Extractions

Get extraction results

Returns status and up to 1,000 results. Follow nextCursor when hasMore is true.

get/extractions/{id}

Path parameters

idstring required

Resource ID returned by the matching create or list endpoint.

Query parameters

limitinteger

Maximum results per page (1-1000, default 1000).

cursorstring

Previous nextCursor. Offset pagination is not supported.

outputMode'compact' | 'full' | 'raw'

Select compact, full, or raw-compatible result fields.

outputPreset'nested' | 'flat'

Keep enrichment nested or merge it into each result.

fieldStyle'source' | 'camelCase' | 'snake_case'

Preserve source keys or convert result field names.

includeRawboolean

Use outputMode=raw instead.

Response

Extraction job with results

resultsobject[] required
hasMoreboolean required
nextCursorstring

Example response

{
  "job": {
    "id": "a1b2c3d4-e5f6-7890-abcd-ef1234567890",
    "toolType": "follower_explorer",
    "status": "completed",
    "totalResults": 500,
    "completionReason": "requested_limit_reached",
    "createdAt": "2026-08-23T10:00:00Z"
  },
  "results": [],
  "nextCursor": "abc123"
}

Changes