> For the complete documentation index, see [llms.txt](https://docs.stric.com.br/documentacao/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.stric.com.br/documentacao/pix/chaves-pix/listar-chaves.md).

# Listar Chaves

## Listar todas as chaves pix

<mark style="color:blue;">`GET`</mark> `https://dev.stric.com.br/pix/keys`

#### Headers

| Name                                            | Type   | Description               |
| ----------------------------------------------- | ------ | ------------------------- |
| authorization<mark style="color:red;">\*</mark> | String | Bearer token              |
| account<mark style="color:red;">\*</mark>       | String | ID da conta a ser operada |

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

```javascript
[
  {
      "id": "e79d77e2-0cd1-4f4c-83eb-cf24eadd009c",
      "key": "08101392009",
      "type": "document",
      "typeCode": 1,
      "status": "REGISTERED",
      "date": "2022-06-16T16:58:33.789Z"
  },
    {
      "id": "e79d77e2-0cd1-4f4c-83eb-cf24eadd009c",
      "key": "543389a9-582c-4b48-be12-1d0013bfb4ab
      
      ",
      "type": "random",
      "typeCode": 4,
      "status": "REGISTERED",
      "date": "2022-06-16T16:58:33.789Z"
  },
]
```

{% endtab %}
{% endtabs %}

### Possíveis status&#x20;

| Status       | Descrição                         |
| ------------ | --------------------------------- |
| WAITING      | Chave aguardando registro         |
| REGISTERED   | Chave criada e registrada         |
| PRE-CANCELED | Chave em processo de cancelamento |
| CANCELED     | Chave cancelada/deletada          |

### Tipos de chaves

| Tipo (typeCode) |                 |
| --------------- | --------------- |
| 1               | CPF/CNPJ        |
| 2               | E-mail          |
| 3               | Celular         |
| 4               | Chave aleatória |
