Get a paginated list of tags
cURL
curl --request GET \ --url https://api.marblecms.com/v1/tags \ --header 'Authorization: Bearer <token>'
{ "tags": [ { "id": "clx789ghi", "name": "JavaScript", "slug": "javascript", "description": "JavaScript tutorials", "count": { "posts": 8 } } ], "pagination": { "limit": 10, "currentPage": 1, "nextPage": 2, "previousPage": null, "totalPages": 5, "totalItems": 42 } }
Your Marble API key
Number of items per page (1-100)
1 <= x <= 100
"10"
Page number
x > 0
"1"
Paginated list of tags
Show child attributes
Was this page helpful?