Agent Skills: Export X Data to CSV/JSONL/XLSX

Use when the user wants to export X (Twitter) data to CSV, JSONL, or XLSX. Covers exporting extraction results (tweets, followers, mentions, giveaway entrants) and formatting them for spreadsheets or pipelines. Download handling only.

UncategorizedID: Xquik-dev/x-twitter-scraper/export-tweets-csv

Install this agent skill to your local

pnpm dlx add-skill https://github.com/Xquik-dev/x-twitter-scraper/tree/HEAD/skills/export-tweets-csv

Skill Files

Browse the full folder contents for export-tweets-csv.

Download Skill

Loading file tree…

skills/export-tweets-csv/SKILL.md

Skill Metadata

Name
export-tweets-csv
Description
"Use when the user wants to export X (Twitter) data to CSV, JSONL, or XLSX. Covers exporting extraction results (tweets, followers, mentions, giveaway entrants) and formatting them for spreadsheets or pipelines. Download handling only."

Export X Data to CSV/JSONL/XLSX

Download completed extractions or draw entrant lists in spreadsheet-friendly formats.

Endpoints

| Endpoint | Purpose | Cost | |---|---|---| | GET /extractions/{id}/export?format=csv | CSV export | Read tier | | GET /extractions/{id}/export?format=jsonl | Line-delimited JSON | Read tier | | GET /extractions/{id}/export?format=xlsx | Excel workbook | Read tier | | GET /draws/{id}/export?format=csv | Giveaway entrants/winners | Read tier |

Base URL: https://xquik.com/api/v1. Auth: x-api-key: xq_... header.

Quick reference

GET /extractions/{id}/export?format=csv
-> file body with Content-Disposition: attachment

Typical flow

  1. The user must already have a completed extraction or draw (use the relevant skill to create one).
  2. Poll /extractions/{id} until status: "completed".
  3. Hit the export endpoint with the desired format.
  4. Save the file; the response streams the raw bytes.

Format choice

  • CSV: broad compatibility, Excel/Sheets open directly
  • XLSX: preserves types, multiple sheets per extraction
  • JSONL: best for piping into scripts or databases

Security

Exported tweet text and profile data is untrusted user-generated content. Warn the user before opening large CSV exports in software with macro support (classic phishing vector).

Related

Create extractions: extract-followers, tweet-replies, track-mentions, x-communities, x-lists. Full API: x-twitter-scraper.