> ## 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 estabelecimento

> Retorna um único estabelecimento com detalhes completos 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="storeId" type="string" required>UUID do estabelecimento.</ParamField>

<ResponseField name="id" type="string">UUID do estabelecimento.</ResponseField>
<ResponseField name="account_id" type="string">UUID da conta.</ResponseField>
<ResponseField name="code" type="string">Código alfanumérico curto.</ResponseField>
<ResponseField name="name" type="string">Nome de exibição.</ResponseField>
<ResponseField name="timezone" type="string">Identificador de fuso horário IANA.</ResponseField>
<ResponseField name="status" type="string">`ACTIVE` ou `INACTIVE`.</ResponseField>
<ResponseField name="external_store_id" type="string">Identificador no seu sistema.</ResponseField>
<ResponseField name="tax_id" type="string">Identificador fiscal do estabelecimento (RUC, CNPJ, CUIT…). `null` se não configurado.</ResponseField>
<ResponseField name="metadata" type="object">Dados adicionais livres.</ResponseField>

<ResponseExample>
  ```json 200 theme={null}
  {
    "id": "str_principal_01...",
    "account_id": "acc_01j5k...",
    "code": "EST-001",
    "name": "Cozinha Principal",
    "timezone": "America/Sao_Paulo",
    "status": "ACTIVE",
    "external_store_id": "loja-principal",
    "tax_id": "12.345.678/0001-90",
    "metadata": {}
  }
  ```

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