TEASEDocs
API ReferenceVault

Find content candidates by price

Suggests likely media for a PPV log row that has no captured content id. Returns an empty list when nothing matches. 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

price_cents?integer

Target price in integer cents.

Range0 <= value
Default0
from_ts?|

Window start (Unix seconds) bounding the time anchor.

to_ts?|

Window end (Unix seconds) bounding the time anchor.

limit?integer

Maximum candidates.

Range1 <= value <= 50
Default12

Response Body

application/json

application/json

application/json

GET
/api/admin/content/search
curl -X GET "https://example.com/api/admin/content/search"
{  "items": [    {      "content_id": 84217,      "media_type": "video",      "has_cover": true,      "buyers_count": 412,      "vendor_created_at": "2026-03-11T09:22:00Z",      "price_cents": 2500,      "sold_at": "2026-06-20T14:02:00Z"    }  ],  "total": 3}
{  "detail": "Not authenticated"}
{  "detail": {    "code": "engine_not_connected",    "message": "Connect your engine to access this data."  }}