Skip to main content
Export a list of indices as CSV or TSV.

Path Parameters

ext
string
required
File format: csv or tsv.

Response

Returns a file download with Content-Disposition: attachment. Max 10,000 rows. Columns: index_id, name, methodology, constituents_count, latest_price, updated_at

Examples

# All indices as CSV
curl -O "https://v2.api.adj.news/api/v1/export/indices.csv" \
  -H "Authorization: Bearer YOUR_TOKEN"

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

# Save to file
curl "https://v2.api.adj.news/api/v1/export/indices.csv" \
  -H "Authorization: Bearer YOUR_TOKEN" -o indices.csv

Errors

StatusDescription
400Invalid format
401Missing or invalid authorization