Spaces method and path for this operation:
get /s/{space_id}/api/tags
Refer to Spaces for more information.
Returns a paginated list of tags matching the optional query text.
GET
/api/tags
curl \
--request GET 'https://localhost:5601/api/tags' \
--header "Authorization: $API_KEY"
Response examples (200)
{
"data": [
{
"data": {
"color": "#1BA9F5",
"description": "Dashboards owned by engineering teams.",
"name": "Engineering"
},
"id": "tag-engineering",
"meta": {
"created_at": "2026-06-01T12:00:00.000Z",
"managed": false,
"updated_at": "2026-06-01T12:00:00.000Z",
"version": "WzEsMV0="
}
},
{
"data": {
"color": "#54B399",
"description": "Content used by operations teams.",
"name": "Operations"
},
"id": "tag-operations",
"meta": {
"created_at": "2026-06-02T09:30:00.000Z",
"managed": false,
"updated_at": "2026-06-02T09:30:00.000Z",
"version": "WzIsMV0="
}
}
],
"meta": {
"page": 1,
"per_page": 20,
"total": 2
}
}