Agent-readable docs index: /llms.txt. Full docs in one file: /llms-full.txt. Download /docs.zip to grep all markdown files locally.
/api/v1/public/markets/{id}/indicesGET
Delayed list of indices that include this market, each with the share it carries in that index's published value. Empty when the market is not part of any index.
Response
200 · Index membership
data *object[]
Indices that include this market, ordered for display. Empty when it is part of none.
Show item properties
index_id *string
Index identifier. Pass it to the index endpoints.
ticker *string
Short display ticker for the index.
name *string
Index name.
weight *number
This market's share of the index, from 0 to 1. The same weight that index's constituent list shows for this market. 0 means the market is included and carried no weight in the latest published value.
Request example
curl -X GET "https://api.adjacent.markets/api/v1/public/markets/<id>/indices"
Response example
{ "data": [ { "index_id": "presr_kalshi", "ticker": "PRESR", "name": "Presidential", "weight": 0.12 } ] }