Extractions

Get extraction results

Returns status and up to 1,000 results. A bounded wait reduces polling. 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.

waitinteger

Wait up to this many seconds when the job is active.

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

Use compact for core fields and tweet counts, full for nested enrichment, or raw for a source copy.

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

hasMoreboolean required
pollAfterMsinteger required
waitUrlstring required
nextCursorstring

Example response

{
  "job": {
    "id": "id",
    "toolType": "follower_explorer",
    "status": "completed",
    "totalResults": 0,
    "createdAt": "2026-08-23T10:00:00Z"
  },
  "results": [],
  "waitUrl": "/api/v1/extractions/id?wait=10",
  "nextCursor": "abc123"
}

Changes