Simplified Markets
Endpoint
Section titled “Endpoint”GET /simplified-markets
Server: https://api.openfish.fun
Tags: Markets (CLOB)
Each returned object carries a minimal set of properties: condition_id, tokens, rewards, active, closed, archived, and accepting_orders. This is useful when you need market state without the overhead of full market metadata.
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 envelope with an array of simplified market objects.
{ "data": [ { "condition_id": "0xabc...", "tokens": [ { "token_id": "123", "outcome": "Yes", "price": "0.65" } ], "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/simplified-markets"