Skip to main content
GET
/
products
/
{id}
Visualizar produto
curl --request GET \
  --url https://api.example.com/products/{id} \
  --header 'X-Api-Key: <x-api-key>'
{
  "ok": true,
  "product": {
      "id": "550e8400-e29b-41d4-a716-446655440000",
      "codes": [
        { "code": "7891234567890", "factor": 1, "fixed": null, "perc": null }
      ],
      "prices": [
        { "price": 19.9, "table": "VAREJO" }
      ],
      "images": [
        { "url": "https://cdn.site.com/products/123.png", "favortie": true }
      ],
      "balances": [
        { "shop": 1, "balance": 25, "balance_date": "2025-02-01T15:22:00.000Z" }
      ],
      "description": "Coca-Cola 2L",
      "active": true,
      "measuring_unit": "UN",
      "category": "BEBIDAS",
      "subcategory": "REFRIGERANTES",
      "synced_at": "2025-02-02T12:30:00.000Z"
    },
  "timestamp": "2025-02-02T14:45:00.000Z"
}

Authorizations

X-Api-Key
string
required
Chave de acesso da API.

Path Params

id
string
required
O UUID do Produto que deseja vizualizar.
{
  "ok": true,
  "product": {
      "id": "550e8400-e29b-41d4-a716-446655440000",
      "codes": [
        { "code": "7891234567890", "factor": 1, "fixed": null, "perc": null }
      ],
      "prices": [
        { "price": 19.9, "table": "VAREJO" }
      ],
      "images": [
        { "url": "https://cdn.site.com/products/123.png", "favortie": true }
      ],
      "balances": [
        { "shop": 1, "balance": 25, "balance_date": "2025-02-01T15:22:00.000Z" }
      ],
      "description": "Coca-Cola 2L",
      "active": true,
      "measuring_unit": "UN",
      "category": "BEBIDAS",
      "subcategory": "REFRIGERANTES",
      "synced_at": "2025-02-02T12:30:00.000Z"
    },
  "timestamp": "2025-02-02T14:45:00.000Z"
}