> ## Documentation Index
> Fetch the complete documentation index at: https://docs.bsautomacao.com.br/llms.txt
> Use this file to discover all available pages before exploring further.

# Visualizar produto

> Visualize detalhes de um produto

### Authorizations

<ParamField header="X-Api-Key" type="string" required>
  Chave de acesso da API.
</ParamField>

### Path Params

<ParamField path="id" type="string" required>
  O UUID do Produto que deseja vizualizar.
</ParamField>

<ResponseExample>
  ```json 200 OK theme={null}
  {
    "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"
  }
  ```
</ResponseExample>
