Skip to main content
GET
/
v2
/
polymarket
/
crypto-updown
Get Crypto Updown
curl --request GET \
  --url https://api.predexon.com/v2/polymarket/crypto-updown \
  --header 'x-api-key: <api-key>'
{
  "markets": [
    {
      "condition_id": "<string>",
      "market_slug": "<string>",
      "title": "<string>",
      "asset": "<string>",
      "timeframe": "<string>",
      "status": "<string>",
      "up_token_id": "<string>",
      "down_token_id": "<string>",
      "winning_side": "<string>",
      "up_price": 123,
      "down_price": 123,
      "start_time": "<string>",
      "end_time": "<string>",
      "total_volume_usd": 0,
      "liquidity_usd": 0,
      "event_slug": "<string>",
      "image_url": ""
    }
  ],
  "pagination": {
    "limit": 123,
    "offset": 123,
    "total": 123,
    "has_more": true
  }
}
Bitcoin, Ethereum, Solana, and XRP up/down markets across all timeframes (15m, 1h, 4h, daily). Filter by asset, timeframe, status, and time range.
ConstraintValue
limit1–200 (default 50)
offsetNo limit

Authorizations

x-api-key
string
header
required

Query Parameters

asset
enum<string> | null

Filter by crypto asset: btc, eth, sol, xrp

Available options:
btc,
eth,
sol,
xrp
timeframe
enum<string> | null

Filter by timeframe: 15m, 1h, 4h, daily

Available options:
15m,
1h,
4h,
daily
status
enum<string> | null

Filter by market status: open, closed

Available options:
open,
closed
end_after
integer | null

Only markets with end_time after this Unix timestamp

Required range: x >= 0
end_before
integer | null

Only markets with end_time before or at this Unix timestamp

Required range: x >= 0
sort
enum<string>
default:desc

Sort by end_time: desc (most recent first) or asc (chronological)

Available options:
asc,
desc
limit
integer
default:50

Number of markets to return

Required range: 1 <= x <= 200
offset
integer
default:0

Offset for pagination

Required range: 0 <= x <= 10000

Response

Successful Response

Response for crypto up/down markets list endpoint.

markets
CryptoUpDownMarket · object[]
required
pagination
OffsetPagination · object
required

Offset-based pagination for markets list endpoints.