> Agent-readable docs index: /llms.txt. Download /docs.zip to grep all markdown files locally.

---
title: "Export reference rates list"
description: "Export the list of reference rates as a CSV or TSV file download. Up to 10,000 rows are returned (server-side cap), ordered by rateid. Columns: rateid, name, methodology, sourcescount, latestprice, sp"
api: "GET /api/v1/export/rates/{ext}"
gridGap: 30
---

<Aside full>
  <RequestExample>
    ```bash title="cURL" lines=false
    curl -X GET "https://api.adjacent.markets/api/v1/export/rates/csv" \
      -H "Authorization: Bearer <token>"
    ```
  </RequestExample>
</Aside>

<OpenAPIEndpoint {...{"method":"get","path":"/api/v1/export/rates/{ext}","summary":"Export reference rates list","description":"Export the list of reference rates as a CSV or TSV file download. Up to 10,000 rows are returned (server-side cap), ordered by rate_id. Columns: rate_id, name, methodology, sources_count, latest_price, spread.","parameters":[{"name":"ext","in":"path","required":true,"description":"Export file format","schema":{"type":"string","enum":["csv","tsv"]}},{"name":"start","in":"query","description":"Only consider rate prices at or after this time when selecting the latest price/spread","schema":{"type":"string","format":"date-time"}},{"name":"end","in":"query","description":"Only consider rate prices at or before this time when selecting the latest price/spread","schema":{"type":"string","format":"date-time"}}],"responses":[{"status":"200","description":"CSV/TSV file of reference rates","examples":[]},{"status":"400","description":"Invalid format (ext must be csv or tsv)","schema":{"type":"object","properties":{"error":{"type":"string"},"message":{"type":"string"}}},"examples":[]}],"security":[{"name":"bearerAuth","type":"http","scheme":"bearer","in":"header","description":"Clerk JWT Bearer token"}],"servers":[{"url":"https://api.adjacent.markets","description":"API server"}]}} />
