logo
TagsList AI tagging labels
Tags

List AI tagging labels

Returns all AI tagging labels configured for the workspace. Labels are stored in workspace.aiTagging.labels.

curl -X GET "https://api.sendkit.ai/v1/tags" \
  -H "Content-Type: application/json" \
  -H "X-Api-Key: YOUR_API_KEY" \
  -H "Authorization: Bearer YOUR_API_TOKEN"
{
  "success": true,
  "data": [
    {
      "name": "interested",
      "description": "Lead expressed interest in the product",
      "color": "#22c55e"
    },
    {
      "name": "not_interested",
      "description": "Lead declined or showed no interest",
      "color": "#ef4444"
    },
    {
      "name": "meeting_booked",
      "description": "Lead agreed to a meeting",
      "color": "#3b82f6"
    },
    {
      "name": "out_of_office",
      "description": "Auto-reply or OOO response",
      "color": "#6b7280"
    }
  ]
}
GET
/v1/tags
GET
API Key (header: X-Api-Key)
X-Api-Keystring
Required

Platform API key (sk_user_...) or Workspace API key (sk_...)

Platform API key (sk_user_...) or Workspace API key (sk_...)
Bearer Token
Bearer Tokenstring
Required

API key as Bearer token

API key as Bearer token
Request Preview
Response

Response will appear here after sending the request

Authentication

header
X-Api-Keystring
Required

API Key for authentication. Platform API key (sk_user_...) or Workspace API key (sk_...)

header
Authorizationstring
Required

Bearer token. API key as Bearer token

Responses

successboolean
dataarray