Skip to content

Sampling Simplified Markets (Cursor-Paginated)

GET /sampling-simplified-markets

Server: https://api.openfish.fun

Tags: Markets (CLOB)

Provides the same reduced-field view as /simplified-markets, but with cursor-based pagination for iterating over the complete dataset in manageable pages.


NameInTypeDescription
next_cursorquerystringPagination cursor. Pass the value received in the previous page’s response to fetch the next batch.

200 — A paginated wrapper holding simplified market objects. The payload structure mirrors /simplified-markets.

{
"data": [
{
"condition_id": "0xabc...",
"tokens": [...],
"rewards": { "rates": [], "min_size": 0, "max_spread": 0 },
"active": true,
"closed": false,
"archived": false,
"accepting_orders": true
}
],
"next_cursor": "LT100",
"limit": 100,
"count": 100
}

Terminal window
curl "https://api.openfish.fun/sampling-simplified-markets?next_cursor=LT200"