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

---
title: "List indices"
description: "Get all available indices"
api: "GET /api/v1/indices"
gridGap: 30
---

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

<OpenAPIEndpoint {...{"method":"get","path":"/api/v1/indices","summary":"List indices","description":"Get all available indices","parameters":[{"name":"page","in":"query","schema":{"type":"integer","default":1}},{"name":"per_page","in":"query","schema":{"type":"integer","default":100,"maximum":500}}],"responses":[{"status":"200","description":"List of indices","schema":{"type":"object","properties":{"data":{"type":"array","items":{"type":"object","properties":{"index_id":{"type":"string"},"name":{"type":"string"},"ticker":{"type":"string"},"description":{"type":"string"},"constituents_count":{"type":"integer"},"latest_price":{"type":["number","null"]},"previous_close_1d":{"type":["number","null"]},"updated_at":{"type":["string","null"],"format":"date-time"},"methodology":{"type":["string","null"]},"created_at":{"type":"string","format":"date-time"},"display_order":{"type":["integer","null"],"description":"Presentation ordering; lower values sort first, null sorts last."}}}},"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"}]}} />
