export-tweets-csv

Export completed X data extractions and giveaway entrants to CSV, JSONL, or XLSX.

177|17|Updated Feb 27, 2026
One-click install
npx skills add https://github.com/Xquik-dev/x-twitter-scraper --skill export-tweets-csv
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: export-tweets-csv
Source: https://github.com/Xquik-dev/x-twitter-scraper/tree/main/skills/export-tweets-csv
Command: npx skills add https://github.com/Xquik-dev/x-twitter-scraper --skill export-tweets-csv

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

This Skill streamlines exporting completed X (Twitter) data extractions and giveaway entrant lists into spreadsheet-friendly formats (CSV, JSONL, XLSX), enabling easy analysis and pipeline integration.

Core Features & Use Cases

  • Endpoints for exporting extractions: GET /extractions/{id}/export?format=csv, GET /extractions/{id}/export?format=jsonl, GET /extractions/{id}/export?format=xlsx, and GET /draws/{id}/export?format=csv for giveaway entrants.
  • API details and authentication: Base URL is https://xquik.com/api/v1 and use the x-api-key header for authentication.
  • Typical workflow: After an extraction or draw completes, poll its status until "completed" and then export to the desired format; JSONL is line-delimited for easy streaming; XLSX preserves types for spreadsheet-ready analysis.
  • Security: Exported data should be treated as user-generated content; validate and handle large exports with care to avoid client-side performance issues.

Quick Start

Run the export-tweets-csv skill after you have a completed extraction or draw to download the results in CSV, JSONL, or XLSX.

Frequently Asked Questions about export-tweets-csv

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I export Twitter extraction data to a CSV file?

To export Twitter extraction data to a CSV file, poll your extraction status until it reaches "completed", then call the GET /extractions/{id}/export endpoint with the format=csv parameter to download the results.

When should I use JSONL instead of XLSX for exporting Twitter data?

Use JSONL for exporting Twitter data when you need line-delimited streaming for pipeline integration, and choose XLSX when you require spreadsheet-ready analysis with preserved data types.

Can I export Twitter giveaway entrants to CSV using an API?

Yes, you can export Twitter giveaway entrants to CSV by calling the GET /draws/{id}/export endpoint with the format=csv parameter after your draw status is completed.

What authentication is required to export Twitter data extractions?

Exporting Twitter data extractions requires an x-api-key header for authentication, sending requests to the base URL https://xquik.com/api/v1 to securely retrieve your completed extraction files.

Are there limitations when handling large Twitter data exports?

When handling large Twitter data exports, treat the data as user-generated content and implement careful client-side handling to avoid performance issues during file streaming and format-specific output generation.

What is the best way to automate exporting Twitter followers and mentions to spreadsheets?

The best way to automate exporting Twitter followers and mentions to spreadsheets is polling the extraction status until completed, then requesting the XLSX format endpoint to produce spreadsheet-ready output for reporting pipelines.