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

# Obtener un establecimiento

> Devuelve un único establecimiento con detalle completo incluyendo metadata.

<ParamField header="x-api-key" type="string" required>
  API key de BOH con scope `catalog:read`.
</ParamField>

<ParamField path="vendorId" type="string" required>
  UUID del vendor.
</ParamField>

<ParamField path="storeId" type="string" required>
  UUID del establecimiento.
</ParamField>

<ResponseField name="id" type="string">UUID del establecimiento.</ResponseField>
<ResponseField name="account_id" type="string">UUID de la cuenta.</ResponseField>
<ResponseField name="code" type="string">Código alfanumérico corto.</ResponseField>
<ResponseField name="name" type="string">Nombre de visualización.</ResponseField>
<ResponseField name="timezone" type="string">Identificador de zona horaria IANA.</ResponseField>
<ResponseField name="status" type="string">`ACTIVE` o `INACTIVE`.</ResponseField>
<ResponseField name="external_store_id" type="string">Identificador en tu sistema.</ResponseField>
<ResponseField name="tax_id" type="string">Identificador fiscal del establecimiento (RUC, CNPJ, CUIT…). `null` si no está configurado.</ResponseField>
<ResponseField name="metadata" type="object">Datos adicionales libres.</ResponseField>

<ResponseExample>
  ```json 200 theme={null}
  {
    "id": "str_principal_01...",
    "account_id": "acc_01j5k...",
    "code": "EST-001",
    "name": "Cocina Principal",
    "timezone": "America/Mexico_City",
    "status": "ACTIVE",
    "external_store_id": "tienda-principal",
    "tax_id": "0991234560001",
    "metadata": {},
    "created_at": "2026-01-01T00:00:00.000Z",
    "updated_at": "2026-01-01T00:00:00.000Z"
  }
  ```

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