Retrieve a product
GET
/produto/{produto_id}Retrieves a product and its showcase.
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
Path Parameters
produto_id*integer
Response Body
application/json
application/json
application/json
application/json
curl -X GET "https://example.com/produto/0"{ "code": 200, "success": true, "data": { "produto": { "id": 0, "nome": "string", "oferta_url": "http://example.com", "ordem": 0, "vitrine": { "id": 0, "nome": "string", "ordem": 0 } } }}