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

# Listar vendors

> Devuelve todos los vendors de tu cuenta. Úsalo para descubrir los IDs de vendor necesarios para el resto de las llamadas.

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

<ResponseField name="vendors" type="object[]">
  Array de objetos vendor: `id`, `account_id`, `external_vendor_id`, `name`, `status`, `metadata`, `created_at`, `updated_at`.
</ResponseField>

<ResponseExample>
  ```json 200 theme={null}
  {
    "vendors": [
      {
        "id": "vnd_01j5k...",
        "account_id": "acc_01j5k...",
        "external_vendor_id": "marca-principal",
        "name": "Mi Marca de Restaurante",
        "status": "ACTIVE",
        "metadata": {},
        "created_at": "2026-01-01T00:00:00.000Z",
        "updated_at": "2026-01-01T00:00:00.000Z"
      }
    ]
  }
  ```
</ResponseExample>
