> ## 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 um fornecedor

> Retorna detalhes completos de um único fornecedor incluindo metadata.

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

<ParamField path="vendorId" type="string" required>UUID do vendor.</ParamField>
<ParamField path="supplierId" type="string" required>UUID do fornecedor.</ParamField>

<ResponseExample>
  ```json 200 theme={null}
  {
    "id": "sup_01j5k...",
    "account_id": "acc_01j5k...",
    "name": "Fornecedor Fresco Ltda.",
    "external_supplier_id": "fornecedor-fresco",
    "status": "ACTIVE",
    "metadata": {}
  }
  ```

  ```json 404 theme={null}
  {
    "error": {
      "kind": "supplier_not_found",
      "message": "Supplier not found"
    }
  }
  ```
</ResponseExample>
