Extractions

Get extraction results

Returns extraction status, progress, and available results.

get/api/v1/extractions/{id}

Path parameters

idstring required

Resource ID returned by the matching create or list endpoint.

Query parameters

limitinteger

Maximum number of results to return (1-1000, default 10)

cursorstring

Previous nextCursor.

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"
}