Skip to main content
GET
/
v1
/
polymarket
/
markets
Get Markets
curl --request GET \
  --url https://api.predexon.com/v1/polymarket/markets \
  --header 'x-api-key: <api-key>'
{
  "detail": [
    {
      "loc": [
        "<string>"
      ],
      "msg": "<string>",
      "type": "<string>"
    }
  ]
}

Authorizations

x-api-key
string
header
required

API key for authentication. Get yours at https://dashboard.predexon.com

Query Parameters

status
enum<string> | null

Filter by status: open or closed

Available options:
open,
closed
min_price
number | null

Minimum price

Required range: 0 <= x <= 1
max_price
number | null

Maximum price

Required range: 0 <= x <= 1
min_open_interest
number | null

Minimum open interest (USD)

Required range: x >= 0
min_volume
number | null

Minimum volume (USD)

Required range: x >= 0
tags
string[] | null

Filter by tag(s)

Maximum array length: 50
event_slug
string[] | null

Filter by event slug(s)

Maximum array length: 50
search
string | null

Search in title

Required string length: 2 - 100
condition_id
string[] | null

Filter by condition ID(s)

Maximum array length: 50
question_id
string[] | null

Filter by question ID(s)

Maximum array length: 50
market_id
string[] | null

Filter by market ID(s)

Maximum array length: 50
market_slug
string[] | null

Filter by market slug(s)

Maximum array length: 50
token_id
string[] | null

Filter by token ID(s)

Maximum array length: 50
sort
enum<string>
default:volume

Sort by

Available options:
volume,
open_interest,
price_desc,
price_asc
limit
integer
default:20

Number of markets to return

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

Number of markets to skip

Required range: 0 <= x <= 10000

Response

Successful Response