TEASEDocs
API ReferenceVault

Top bundles by revenue

Returns the top recurring media-sets (bundles) by real revenue then sales. min_media=2 (default) restricts to true bundles; pass 1 to include standalone sales. 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

limit?integer

Maximum bundles.

Range1 <= value <= 100
Default30
from_ts?|

Window start (Unix seconds) on sold_at.

to_ts?|

Window end (Unix seconds) on sold_at.

min_media?integer

Minimum media per bundle.

Range1 <= value
Default2

Response Body

application/json

application/json

application/json

GET
/api/admin/content/bundles
curl -X GET "https://example.com/api/admin/content/bundles"
{  "items": [    {      "bundle_key": "b_2f9a",      "n_media": 5,      "times_sold": 38,      "revenue_cents": 950000,      "avg_price_cents": 25000,      "last_sold_ts": 1751200000,      "name": "",      "cover_ids": [        84217,        84218      ]    }  ],  "total": 27}
{  "detail": "Not authenticated"}
{  "detail": {    "code": "engine_not_connected",    "message": "Connect your engine to access this data."  }}