Skip to main content
GET
/
2
/
pm
/
market
/
live
Get Live Prediction Markets
curl --request GET \
  --url https://pm-api-prod-eu.mobula.io/api/2/pm/market/live
{
  "data": [
    {}
  ]
}
Alpha — This endpoint is part of the Prediction Markets API, currently in early access. May change without notice.

Query Parameters

tokens
string
default:"btc,eth,sol,xrp"
Comma-separated token symbols (lowercase). Filters markets related to these tokens.
duration
string
default:"5m"
Market duration filter. Possible values: 5m, 15m, 4h.
limit
number
default:"50"
Number of markets to return.
offset
number
default:"0"
Pagination offset.

Response

data
array
Array of live market objects.
pagination
object
Pagination metadata.
hostname
string
Server hostname that handled the request.
took
number
Response time in milliseconds.

Usage Example

curl -X GET "https://api.mobula.io/api/2/pm/market/live?tokens=btc,eth&duration=5m"

Example Response

{
  "data": [
    {
      "platform": "polymarket",
      "marketId": "0x1234...",
      "slug": "btc-above-100k-next-5m",
      "question": "Will BTC be above $100,000 in 5 minutes?",
      "category": "crypto",
      "status": "active",
      "volume24hUSD": 0,
      "totalVolumeUSD": 0,
      "liquidityUSD": 15242.41,
      "endDate": "2026-03-17T12:05:00Z",
      "createdAt": "2026-03-17T12:00:00Z",
      "logo": "https://polymarket-upload.s3.us-east-2.amazonaws.com/BTC+fullsize.png",
      "tradesCount": 0,
      "outcomes": [
        { "outcomeId": "71321...", "label": "Yes", "priceUSD": 0.55 },
        { "outcomeId": "71322...", "label": "No", "priceUSD": 0.45 }
      ]
    }
  ],
  "pagination": {
    "page": 1,
    "offset": 0,
    "limit": 50,
    "pageEntries": 1
  },
  "hostname": "api-node-01",
  "took": 42
}

Query Parameters

symbol
string

Comma-separated token symbol filter (e.g. btc,eth). Canonical name; tokens accepted as legacy alias.

Example:

"btc,eth"

tokens
string

Legacy alias for symbol.

duration
enum<string>
default:5m

UpDown market duration window.

Available options:
5m,
15m,
4h
limit
integer
default:50

Page size (1-100).

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

Pagination offset.

Required range: x >= 0

Response

200 - application/json

Live markets list

data
object[]