Skip to main content
GET /leads/:leadId/tags Get all tags assigned to a specific lead.

Path Parameters

ParameterTypeDescription
leadIdstring (uuid)The lead ID to get tags for

Example

curl https://api.getnexor.ai/api/public/leads/123e4567-e89b-12d3-a456-426614174000/tags \
  -H "X-API-Key: nxr_live_your_api_key"

Responses

200 — Successful response

{
  "data": [
    {
      "id": "123e4567-e89b-12d3-a456-426614174001",
      "name": "VIP Client",
      "slug": "vip-client"
    }
  ]
}

Response Fields — Tag

FieldTypeDescription
idstring (uuid)Unique tag identifier
namestringTag display name
slugstringURL-friendly tag identifier

401 — Authentication error

See Authentication.

500 — Internal server error

Last modified on June 18, 2026