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

# Obter recebimento de mercadoria

> Retorna detalhes completos de um recebimento de mercadoria incluindo todas as linhas.

<ParamField header="x-api-key" type="string" required>
  API key do BOH com escopo `inventory:read`.
</ParamField>

<ParamField path="vendorId" type="string" required>UUID do vendor.</ParamField>
<ParamField path="receiptId" type="string" required>UUID do recebimento.</ParamField>

<ResponseExample>
  ```json 200 theme={null}
  {
    "id": "gr_01...",
    "status": "COMPLETED",
    "store_id": "str_principal_01...",
    "supplier_id": "sup_01...",
    "occurred_at": "2026-08-07T09:00:00.000Z",
    "lines": [
      {
        "id": "grl_01...",
        "item_id": "itm_01...",
        "quantity": 10,
        "unit_id": "unit_kg_01...",
        "unit_cost": 8.50
      }
    ]
  }
  ```
</ResponseExample>
