SocialiQDocs

Core concepts

Response envelope

Every success shares the same top-level shape, whatever resource you hit.

Fields

FieldInTypeDescription
request_idbodystringUnique ID for the request. Quote it in support tickets.
databodyobject | arrayThe normalized resource (or { items } for lists).
pagebodyobjectOn lists & search: { next_cursor, has_more }.
sourcebodyobjectResolved route: { provider, endpoint }.
usagebodyobjectAccounting: { billable_units, cached }.

Example

[ .JSON ]
{  "request_id": "sc_b2c3d4e5f6a7b8c9d0e1",  "data": { "id": "7350810998023949599", "type": "post", "platform": "tiktok" },  "source": { "provider": "socialcues", "endpoint": "tiktok.post.fetch" },  "usage": { "billable_units": 1, "cached": true }}
200 · post