Skip to main content
GET
/
betting
/
open
Open Bets
curl --request GET \
  --url https://api.example.com/betting/open

Request

currency
string
Filter by currency.
limit
number
default:"20"
Results per page.
offset
number
default:"0"
Skip N results.
curl "https://api.midasprotocol.org/betting/open?currency=USDC" \
  -H "Authorization: Bearer pp_your_key"

Response

{
  "data": [ { "id": "uuid", "description": "...", "amount": "50.00", "status": "OPEN", ... } ],
  "pagination": { "total": 2, "limit": 20, "offset": 0, "hasMore": false }
}