Skip to main content

List All Tags

Retrieve a paginated list of tags defined in your workspace. Tags are used to categorize and segment contacts.


Endpoint

GET https://api.campaignlark.com/v1/tags

Query Parameters

ParameterTypeRequiredDefaultDescription
pageintegeroptional1Page number.
limitintegeroptional50Items per page (1–100).

Sample Request

GET https://api.campaignlark.com/v1/tags?page=1&limit=50

Response

Success — 200 OK

{
"data": {
"tags": [
{
"id": 1,
"name": "VIP",
"description": "VIP customers"
}
],
"pagination": {
"current_page": 1,
"per_page": 50,
"total_pages": 1,
"total_count": 1
}
}
}

Tag Object

FieldTypeDescription
idintegerUnique identifier for the tag.
namestringThe tag name.
descriptionstringA short description of the tag.

Pagination Object

FieldTypeDescription
current_pageintegerThe current page number.
per_pageintegerNumber of items per page.
total_pagesintegerTotal number of pages.
total_countintegerTotal number of tags.