Skip to main content

Documentation Index

Fetch the complete documentation index at: https://docs.adj.news/llms.txt

Use this file to discover all available pages before exploring further.

Export all markets belonging to an event as CSV or TSV.

Path Parameters

id
string
required
The unique event identifier.
ext
string
required
File format: csv or tsv.

Response

Returns a file download with Content-Disposition: attachment. Columns: market_id, market_name, platform, market_position, latest_price, total_volume

Examples

# Export markets for an event as CSV
curl -O "https://v2.api.adj.news/api/v1/export/events/senate-co-26/markets.csv" \
  -H "Authorization: Bearer YOUR_TOKEN"

# Export as TSV
curl -O "https://v2.api.adj.news/api/v1/export/events/pres-2028-party/markets.tsv" \
  -H "Authorization: Bearer YOUR_TOKEN"

Errors

StatusDescription
400Invalid format
401Missing or invalid authorization
404Event not found