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

# Listar Categorias

Retorna a lista completa de categorias da sua loja.

<ParamField header="Authorization" type="string" required>
  Token de acesso no formato `Bearer <seu_token>`.
</ParamField>

<ResponseExample>
  ```json Response theme={null}
  [
    {
      "id": "uuid-da-categoria",
      "store_id": "uuid-da-loja",
      "title": "Minha Categoria",
      "slug": "minha-categoria",
      "image": null,
      "banner": null,
      "parent_id": null,
      "position": 0,
      "created_at": "2024-01-01T00:00:00.000Z",
      "updated_at": "2024-01-01T00:00:00.000Z",
      "products_count": 5,
      "sub_categories": []
    }
  ]
  ```
</ResponseExample>
