Skip to content

List Tags

GET /external/v1/tags

Returns all tags in your account with their usage count (number of contacts carrying the tag).

Authentication

Requires tags:read permission.

Request

bash
curl --request GET \
  --url "https://app.getraze.com/external/v1/tags" \
  --header "X-API-Key: YOUR_API_KEY"
javascript
const axios = require('axios');

const response = await axios.get('https://app.getraze.com/external/v1/tags', {
  headers: { 'X-API-Key': 'YOUR_API_KEY' }
});

console.log(response.data);
python
import requests

response = requests.get(
    'https://app.getraze.com/external/v1/tags',
    headers={'X-API-Key': 'YOUR_API_KEY'}
)

print(response.json())

Response

json
{
  "success": true,
  "data": [
    {
      "id": "tag_01",
      "name": "decision-maker",
      "color": "purple",
      "created_at": "2026-01-10T08:00:00Z",
      "usage_count": 42
    }
  ]
}

Response Fields

FieldTypeDescription
idstringTag identifier
namestringTag name
colorstringTag color
created_atstringISO 8601 creation timestamp
usage_countintegerNumber of contacts with this tag

GetRaze - AI-Powered Lead Generation