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

Path Parameters

ext
string
required
File format: csv or tsv.

Query Parameters

start
datetime
Filter rates with price data after this date. Format: ISO 8601.
end
datetime
Filter rates with price data before this date. Format: ISO 8601.

Response

Returns a file download with Content-Disposition: attachment. Max 10,000 rows. Columns: rate_id, name, methodology, sources_count, latest_price, spread

Examples

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

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

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

Errors

StatusDescription
400Invalid format
401Missing or invalid authorization