TEASEDocs
API ReferenceVault

Top content + tags by revenue

Returns the top-selling vault media and tags over a time window, each with its unlock-rate (which content sells). Requires a read-scoped key.

Authorization

bearerAuth
AuthorizationBearer <token>

Your al_live_<prefix>_<secret> API key. Mint and manage keys in the dashboard.

In: header

Query Parameters

from_ts?|

Window start (Unix seconds). Defaults to 30 days ago.

to_ts?|

Window end (Unix seconds). Defaults to now.

limit?integer

Maximum rows per list.

Range1 <= value <= 200
Default20

Response Body

application/json

application/json

GET
/api/admin/vault/performance
curl -X GET "https://example.com/api/admin/vault/performance"
{  "media": [    {      "media_id": "501",      "revenue_cents": 184000,      "unlock_rate": 0.27    }  ],  "tags": [    {      "tag": "cat:solo",      "revenue_cents": 920000,      "unlock_rate": 0.31    }  ]}
{  "detail": "Not authenticated"}