List products
GET
/produtoLists the products of the school, ordered by name, 150 per page.
Authorization
apiKey AuthorizationBearer <token>
The school API key, found in the dashboard settings, sent in the Authorization header. The Bearer prefix is optional.
In: header
Query Parameters
cursor?string
Opaque page cursor. Do not build it: follow next_page_url and prev_page_url from the previous page.
Response Body
application/json
application/json
curl -X GET "https://example.com/produto"{ "code": 200, "success": true, "data": { "paginator": { "next_page_url": "http://example.com", "perPage": 0, "prev_page_url": "http://example.com" }, "produto": [ { "id": 0, "nome": "string", "oferta_url": "http://example.com", "ordem": 0 } ] }}