
Give a creator a private, PIN-protected link where they can check their own analytics and payouts.
A shareable page is a private link you hand to a creator so they can see their own numbers — views, engagement, goals, and what they've earned — without an account, a login, or an invitation.
Every page is protected by a 4-digit entrance PIN. Nothing loads until the PIN is entered correctly, and the pages are excluded from search engines.
You choose one or both sections when you create the page:
| Section | Contents |
|---|---|
| Analytics | Total views, likes, comments, shares, followers, and engagement rate; a views-over-time chart with 7 / 30 / 90 day and all-time ranges; progress against their current goals; and a paginated list of their tracked videos with per-video stats. |
| Payout accruals | Total earned, awaiting payment, and paid to date; the payout terms they're on; every accrual with what earned it; and the payments you've recorded. |
The page shows your org name, the creator's name, and their platform handles. It shows nothing about other creators, other projects, or your internal notes.
Voided and rejected accruals and payments are never shown. Those are operator corrections, and surfacing them to a creator reads as money being taken away.
Every shareable page lives at the same predictable address:
https://www.trackagoat.com/share/creator/<creator_id>
The payouts section is at /share/creator/<creator_id>/payouts.
That means anything holding a creator id — including an AI agent working against the API — can build the link without a lookup. It also means the URL itself is not a secret. The PIN is the access control, which is why we rate-limit and lock out repeated wrong guesses.
Go to the creator, then the Info tab.
Scroll to the Shareable page section and click Create shareable page.
Tick Analytics, Payout accruals, or both. At least one is required.
Type a 4-digit PIN, or leave the field blank and one will be generated for you.
Only org admins can create, change, delete, or reveal the PIN of a shareable page.
On the Creators list, tick the creators you want.
Click Shareable Pages in the bulk action bar.
Pick the sections, then choose whether each creator gets their own PIN (recommended) or whether the whole batch shares one PIN.
The results table lists every creator with their link and PIN. Use Copy all or Download CSV — this is the only place the PINs appear together.
Creators who already have a page will have their settings replaced and a new PIN issued.
A shared batch PIN is easier to announce to a cohort, but one leaked PIN opens every page in the batch. Prefer unique PINs unless you have a specific reason not to.
From the creator's Info tab you can:
Because the URL is derived from the creator id, it can't be changed. If a link is shared with the wrong person, regenerate the PIN — that's what invalidates their access.
robots.txt and carry a noindex directive.Shareable pages are fully manageable through the v2 API, and every creator response carries a share_link object. See the Share links API reference.
# Create a page and capture the PIN
curl -X POST -H "Authorization: Bearer tga_<key>" \
-H "Content-Type: application/json" \
-d '{"show_analytics": true, "show_payouts": true}' \
"https://www.trackagoat.com/api/v2/creators/<creator_id>/share-link"Copy the link and the PIN and send them to the creator.