Skip to main content
GET
/
api
/
v1
/
tags
List Tags
curl --request GET \
  --url https://api.sequenzy.com/api/v1/tags \
  --header 'Authorization: Bearer <token>'
{
  "success": true,
  "tags": [
    {
      "id": "tag_abc123",
      "name": "premium",
      "color": "#f97316",
      "isSystem": false
    }
  ]
}

Documentation Index

Fetch the complete documentation index at: https://docs.sequenzy.com/llms.txt

Use this file to discover all available pages before exploring further.

List tag definitions for the authenticated company.

Request

curl "https://api.sequenzy.com/api/v1/tags" \
  -H "Authorization: Bearer YOUR_API_KEY"

Responses

{
  "success": true,
  "tags": [
    {
      "id": "tag_abc123",
      "name": "premium",
      "color": "#f97316",
      "isSystem": false
    }
  ]
}