GET
/
analytics
/
tags
Available Analytics Tags
curl --request GET \
  --url https://jmpy.me/api/v1/analytics/tags \
  --header 'Authorization: Bearer <token>'
{
  "success": true,
  "data": [
    {}
  ]
}
Retrieve all unique tags applied to your shortened URLs. This is useful for building dynamic filtering interfaces in your application.

Response

success
boolean
Whether the request was successful.
data
array
List of unique tag strings.

Request Examples

curl -X GET "https://jmpy.me/api/v1/analytics/tags" \
  -H "Authorization: Bearer YOUR_API_KEY"

Response Example

{
  "success": true,
  "data": [
    "marketing",
    "social-media",
    "summer-sale",
    "email-newsletter",
    "re-targeting"
  ]
}

Use Cases

Populate a dropdown menu in your internal reporting tool with all active tags, allowing users to quickly filter analytics by specific campaigns or categories.
Ensure your team is sticking to a predefined set of tags by periodically checking the list of active tags and identifying any misspellings or unauthorized categories.