Sampling Simplified Markets (Cursor-Paginated)
Endpoint
Section titled “Endpoint”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.
Request Parameters
Section titled “Request Parameters”| Name | In | Type | Description |
|---|---|---|---|
next_cursor | query | string | Pagination cursor. Pass the value received in the previous page’s response to fetch the next batch. |
Response
Section titled “Response”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}curl "https://api.openfish.fun/sampling-simplified-markets?next_cursor=LT200"