Skip to main content
curl -H 'X-Curto-Api-Key: <your_key>' \
https://api.curto.io/v1/tags
{
	"data": [
		{
			"id": "<tag_id>",
			"label": "Nome da tag",
			"color": "red"
		}
	],
	"status": "OK"
}

Resposta

status
string
Indica se a requisição foi bem sucedida. OK para quando for bem sucedida, e ERROR para quando não for.
data
array
Uma lista de tags.
curl -H 'X-Curto-Api-Key: <your_key>' \
https://api.curto.io/v1/tags
{
	"data": [
		{
			"id": "<tag_id>",
			"label": "Nome da tag",
			"color": "red"
		}
	],
	"status": "OK"
}