GET
/api/v1/tags/:idGet a tag
Returns a single tag by ID, including the count of links currently using it.
Authorization
Authorizationstringheaderrequired
Bearer token. Format: Bearer YOUR_API_KEY
Path Parameters
idstringpathrequired
The ID of the tag to retrieve.
curl https://app.brevr.io/api/v1/tags/tag_abc123 \
-H "Authorization: Bearer YOUR_API_KEY"{
"tag": {
"id": "tag_abc123",
"name": "summer-campaign",
"color": "#3b82f6",
"createdAt": "2024-06-01T10:00:00.000Z",
"_count": { "links": 42 }
}
}Last updated on