Extractions
Get extraction
Retrieve extraction job details with paginated results
GET
Get extraction
Documentation Index
Fetch the complete documentation index at: https://docs.xquik.com/llms.txt
Use this file to discover all available pages before exploring further.
Free - does not consume credits
Headers
Your API key. Session cookie authentication is also supported. Generate a key from the dashboard.
Path parameters
Extraction job ID returned from Create Extraction or List Extractions.
Query parameters
Number of results to return per page. Default:
100. Maximum: 1000.Result ID cursor for pagination. Use the
nextCursor value from the previous response to fetch the next page.Response
- 200 OK
- 401 Unauthenticated
- 404 Not Found
- 429 Rate Limited
Extraction job metadata.
Array of extracted user/tweet records for the current page.
Only
id and xUserId are guaranteed on every result. All other fields are omitted entirely when unavailable (never set to null). Always check for the presence of a field before accessing it.Whether more results exist beyond this page.
Cursor to pass as the
after parameter for the next page. Only present when hasMore is true.Paginating results
Results are ordered by ID ascending. To iterate through all results for a large extraction:- Make the initial request without the
afterparameter. - Check
hasMorein the response. Iftrue, usenextCursoras theaftervalue in the next request. - Repeat until
hasMoreisfalse.
Cursor handoff
UseGET /extractions/{id} when an integration needs structured JSON rows,
incremental checkpoints, or more rows than a file export can return. Treat
nextCursor as an opaque checkpoint and pass it back as after.
Page checkpoint
Store
extraction_id, page_index, page_cursor, next_cursor,
has_more, and result_count after each successful page.Row shape
Persist selected fields such as
row_id, x_user_id, x_username,
tweet_id, and tweet_text. Do not dump raw result arrays into shared logs.Large jobs
Stream pages to
xquik-extraction-results.jsonl when you need replayable
rows or results beyond the export row cap.File handoff
Use Export Extraction when CSV, JSON,
XLSX, Markdown, PDF, or TXT files are enough.
Next steps: Export Extraction to download all results as CSV, XLSX, or Markdown, or List Extractions to browse your job history.
Last modified on May 20, 2026
Get extraction