This repository contains public-facing documentation for UGC Trackr customers and integration partners.
The UGC Trackr External API gives your team read-only access to campaign data, post data, and a small set of summary analytics.
Base URL:
https://app.ugctrackr.com/api/external/v1
- Create an API key in the UGC Trackr app under
Settings > API Access. - Send that key in the
Authorizationheader as a bearer token. - Start by calling the campaigns or posts endpoints.
Example:
curl -s https://app.ugctrackr.com/api/external/v1/campaigns \
-H "Authorization: Bearer YOUR_API_KEY"GET /campaignsGET /campaigns/:campaignIdGET /postsGET /posts/:postIdGET /analytics/overviewGET /analytics/posts/trending
- This API is read-only.
- API keys are team-scoped.
- Date-based filtering and reporting logic use Pacific time (
America/Los_Angeles) so the API matches the app.