TEASEDocs
API ReferenceVault

A fan's purchased content gallery

Returns the content a fan has purchased (the honest "what they bought"), each item with its price and cover. truncated=true when older purchases fell outside the read window. 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

Path Parameters

fan_id*string

Fan id.

Response Body

application/json

application/json

application/json

GET
/api/admin/content/purchased-by/{fan_id}
curl -X GET "https://example.com/api/admin/content/purchased-by/string"
{  "items": [    {      "content_id": 84217,      "media_type": "video",      "price_cents": 2500,      "opened_at": "2026-06-20T14:02:00Z",      "has_cover": true    }  ],  "total": 1,  "truncated": false}
{  "detail": "Not authenticated"}
{  "detail": {    "code": "engine_not_connected",    "message": "Connect your engine to access this data."  }}