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

# Listar Status

> Retorna todos os status disponíveis

## Response

<ResponseField name="array" type="Status[]">
  Lista de todos os status
</ResponseField>

<Expandable title="Propriedades do Status">
  <ResponseField name="id" type="string">
    UUID único do status
  </ResponseField>

  <ResponseField name="tenant_id" type="string">
    UUID do tenant
  </ResponseField>

  <ResponseField name="name" type="string">
    Nome do status
  </ResponseField>

  <ResponseField name="description" type="string">
    Descrição do status
  </ResponseField>

  <ResponseField name="color" type="string">
    Cor em formato hexadecimal (#RRGGBB)
  </ResponseField>

  <ResponseField name="default" type="boolean">
    Se é o status padrão para novos leads
  </ResponseField>

  <ResponseField name="created_at" type="string">
    Data de criação
  </ResponseField>

  <ResponseField name="updated_at" type="string">
    Data da última atualização
  </ResponseField>
</Expandable>

<RequestExample>
  ```bash cURL theme={null}
  curl -X GET "https://api.leavo.ai/backend/status" \
    -H "Authorization: Bearer sua_chave_aqui"
  ```

  ```javascript JavaScript theme={null}
  const response = await fetch('https://api.leavo.ai/backend/status', {
    headers: {
      'Authorization': 'Bearer sua_chave_aqui'
    }
  });

  const statusList = await response.json();
  ```
</RequestExample>

<ResponseExample>
  ```json 200 OK theme={null}
  [
    {
      "id": "770e8400-e29b-41d4-a716-446655440000",
      "tenant_id": "660e8400-e29b-41d4-a716-446655440000",
      "name": "Novo",
      "description": "Lead recém chegado",
      "color": "#007bff",
      "default": true,
      "created_at": "2024-01-01T00:00:00Z",
      "updated_at": "2024-01-01T00:00:00Z"
    },
    {
      "id": "770e8400-e29b-41d4-a716-446655440001",
      "tenant_id": "660e8400-e29b-41d4-a716-446655440000",
      "name": "Qualificado",
      "description": "Lead qualificado para venda",
      "color": "#28a745",
      "default": false,
      "created_at": "2024-01-01T00:00:00Z",
      "updated_at": "2024-01-01T00:00:00Z"
    }
  ]
  ```
</ResponseExample>
