cURL
curl --request GET \ --url https://www.suprsonic.com/api/v1/tags \ --header 'Authorization: Bearer <token>'
{ "success": true, "data": [ { "tag": "<string>", "usage_count": 123 } ] }
Retrieve all tags used in articles. The tags returned depend on the authentication used:
Authenticated Access:
Public Access (from valid domains):
Admin API key for managing accounts and creating content
Successfully retrieved tags
true
Array of tags with usage counts, sorted by usage count descending
Show child attributes
Was this page helpful?