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"
}
Tags
Listar todas as Tags
Esse endpoint lista todas as 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"
}
Resposta
string
Indica se a requisição foi bem sucedida. OK para quando for bem sucedida, e ERROR para quando não for.
array
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"
}