Bulk Exports
Large extracts should use async export jobs rather than repeated high-volume pagination.
- Create an export job with the resource, filters, and format.
- Poll the export job status endpoint.
- Download the export when it is complete.
- Delete or expire the export according to retention policy.
Example
Section titled “Example”curl -X POST https://futpicks.com/api/v1/data/exports \ -H "Authorization: Bearer $FUTPICKS_TOKEN" \ -H "Content-Type: application/json" \ -d '{ "resource": "signals", "format": "CSV", "parametersJson": "{\"from\":\"2026-05-01\",\"to\":\"2026-05-28\"}" }'Allowed resources: leagues, teams, matches, odds-snapshots, signals, track-record.
Allowed formats: CSV, JSONL.