Polyrankdocs
Rankings

GET /v1/rankings/preset/{slug}/snapshot

A preset's persisted top-K board for a given day (rank + key + composite). Stable and lookahead-free — the selection object for slow-loop consumers. Omit ?date for the latest snapshot.

GET
/v1/rankings/preset/{slug}/snapshot

A preset's persisted top-K board for a given day (rank + key + composite). Stable and lookahead-free — the selection object for slow-loop consumers. Omit ?date for the latest snapshot.

AuthorizationBearer <token>

API key: Authorization: Bearer pk_live_… (mint at polyrank.app/api-keys)

In: header

Path Parameters

slug*string

Query Parameters

date?string
limit?integer

Response Body

application/json

curl -X GET "https://example.com/v1/rankings/preset/string/snapshot"
{  "preset_id": "string",  "snapshot_date": "string",  "grain": "string",  "rows": [    {      "rank": -9007199254740991,      "key": "string",      "composite_score": 0    }  ]}