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

# Listar todas as Tags

> Esse endpoint lista todas as Tags

### Resposta

<ResponseField name="status" type="string">
  Indica se a requisição foi bem sucedida. OK para quando for bem sucedida, e ERROR para quando não for.
</ResponseField>

<ResponseField name="data" type="array">
  Uma lista de tags.

  <Expandable title="Tag Object">
    <ResponseField name="id" type="string">
      Esse é o ID interno do link criado. Você não precisa memorizar esse dado
    </ResponseField>

    <ResponseField name="label" type="string">
      É o nome da sua Tag.
    </ResponseField>

    <ResponseField name="color" type="string">
      É o identificador da cor da sua Tag.
    </ResponseField>
  </Expandable>
</ResponseField>

<RequestExample>
  ```bash theme={null}
  curl -H 'X-Curto-Api-Key: <your_key>' \
  https://api.curto.io/v1/tags
  ```
</RequestExample>

<ResponseExample>
  ```json Response theme={null}
  {
  	"data": [
  		{
  			"id": "<tag_id>",
  			"label": "Nome da tag",
  			"color": "red"
  		}
  	],
  	"status": "OK"
  }
  ```
</ResponseExample>
