Skip to content

Simplified Markets

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.


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

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
}

Terminal window
curl "https://api.openfish.fun/simplified-markets"