SocialiQDocs

Resources

Catalog

Introspection. List the platforms, resources, and actions SocialiQ supports so agents only request data that exists.

List the catalog

GET/v1/catalog

List supported (platform × resource × action) routes. Filter with ?platform= to see one platform's coverage.

FieldInTypeDescription
platformqueryenumFilter to a single platform.

Request

curl "https://api.socialiq.dev/v1/catalog?platform=tiktok" \  -H "Authorization: Bearer sc_live_..."

Response

[ .JSON ]
{  "data": [    {      "id": "tiktok.post.comments",      "resource": "posts",      "action": "comments",      "platform": "tiktok",      "tier": "core",      "status": "active",      "route": "GET /v1/tiktok/posts/{id}/comments"    }  ],  "count": 1}
200 · catalog