> For the complete documentation index, see [llms.txt](https://docs.autentique.com.br/api/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.autentique.com.br/api/1/pastas/lista-pastas.md).

# Lista pastas

{% hint style="danger" %}
Esta versão da API foi deprecada e somente receberá correções de bugs e falhas de segurança.
{% endhint %}

<mark style="color:blue;">`GET`</mark> `https://api.autentique.com.br/pastas.json`

#### Query Parameters

| Name  | Type    | Description                   |
| ----- | ------- | ----------------------------- |
| page  | integer | Número da página              |
| count | integer | Número de pastas por página   |
| s     | string  | Texto para pesquisa de pastas |

#### Headers

| Name          | Type   | Description  |
| ------------- | ------ | ------------ |
| X-Autntiq-Api | string | Token de API |

{% tabs %}
{% tab title="200 " %}

```javascript
{
  "data": [
    {
      "uuid": "9aa657b73596402b98ea774df8b84d1a",
      "nome": "Empresa XYZ",
      "slug": "empresa-xyz",
      "created": "2018-01-01 23:41:45"
      "total": "0"
    }
  ],
  "total": 1
}
```

{% endtab %}

{% tab title="401 " %}

```javascript
{
  "errors": {
    "message": "Você deve estar logado para acessar esta página."
  }
}
```

{% endtab %}
{% endtabs %}
