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

---
title: "List rate chains"
description: "Get all rate chains with their configuration and contracts. Used for rolling reference rates."
api: "GET /api/v1/rates/chains"
gridGap: 30
---

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

<OpenAPIEndpoint {...{"method":"get","path":"/api/v1/rates/chains","summary":"List rate chains","description":"Get all rate chains with their configuration and contracts. Used for rolling reference rates.","parameters":[{"name":"page","in":"query","description":"Page number","schema":{"type":"integer","default":1,"minimum":1}},{"name":"per_page","in":"query","description":"Items per page","schema":{"type":"integer","default":100,"minimum":1,"maximum":500}}],"responses":[{"status":"200","description":"Paginated rate chains","schema":{"type":"object","properties":{"data":{"type":"array","items":{"type":"object","properties":{"chain_id":{"type":"string"},"name":{"type":"string"},"description":{"type":["string","null"]},"roll_lead_days":{"type":"integer"},"roll_window_days":{"type":"integer"},"contracts":{"type":"array","items":{"type":"object","required":["market_id","is_active"],"properties":{"market_id":{"type":"string"},"start_date":{"type":["string","null"],"format":"date-time"},"end_date":{"type":["string","null"],"format":"date-time"},"is_active":{"type":"boolean"},"platform":{"type":["string","null"]}}}},"roll_schedule_type":{"type":["string","null"]},"total_contracts":{"type":"integer"},"active_contracts":{"type":"integer"}}}},"meta":{"type":"object","properties":{"total":{"type":"integer"},"page":{"type":"integer"},"per_page":{"type":"integer"},"total_pages":{"type":"integer"},"has_next":{"type":"boolean"},"has_prev":{"type":"boolean"}}}}},"examples":[]}],"security":[{"name":"bearerAuth","type":"http","scheme":"bearer","in":"header","description":"Clerk JWT Bearer token"}],"servers":[{"url":"https://api.adjacent.markets","description":"API server"}]}} />
