Skip to main content
GET
/
2
/
pm
/
trending
Trending standalone prediction markets
curl --request GET \
  --url https://demo-api.mobula.io/api/2/pm/trending
{
  "data": [
    {
      "platform": "<string>",
      "marketId": "<string>",
      "slug": "<string>",
      "question": "<string>",
      "category": "<string>",
      "status": "<string>",
      "logo": "<string>",
      "volume24hUSD": 123,
      "totalVolumeUSD": 123,
      "liquidityUSD": 123,
      "openInterestUSD": 123,
      "endDate": "<string>",
      "createdAt": "<string>",
      "eventId": "<string>",
      "eventSlug": "<string>",
      "eventTitle": "<string>",
      "rank": 123,
      "trendingScore": 123,
      "volumeChange24hPercentage": 123,
      "outcomes": [
        {
          "outcomeId": "<string>",
          "label": "<string>",
          "priceUSD": 123
        }
      ],
      "tradesCount": 123
    }
  ],
  "pagination": {
    "page": 123,
    "offset": 123,
    "limit": 123,
    "pageEntries": 123,
    "totalCount": 123,
    "hasMore": true,
    "nextCursor": "<string>"
  },
  "hostname": "<string>",
  "took": 123
}

Documentation Index

Fetch the complete documentation index at: https://docs.mobula.io/llms.txt

Use this file to discover all available pages before exploring further.

Alpha — This endpoint is part of the Prediction Markets API, currently in early access. May change without notice.

Query Parameters

period
string
default:"24h"
Trending period. Possible values: 1h, 24h, 7d, 30d.
filters
string
JSON object with optional filter fields: platforms (comma-separated or array of platform names), categories (comma-separated or array of category names). Example: {"platforms":"polymarket","categories":"crypto"}.
limit
number
default:"20"
Number of markets to return (1 to 100).
offset
number
default:"0"
Pagination offset.

Response

data
array
Array of trending market results (extends search results with trending data).
pagination
object
Pagination metadata.
hostname
string
Server hostname that handled the request.
took
number
Time taken in milliseconds.

Usage Example

curl -X GET "https://api.mobula.io/api/2/pm/trending?period=24h&limit=10"

Example Response

{
  "data": [
    {
      "platform": "polymarket",
      "marketId": "0x1234...",
      "slug": "will-eth-reach-10k-2026",
      "question": "Will ETH reach $10,000 by end of 2026?",
      "category": "crypto",
      "status": "active",
      "volume24hUSD": 45000,
      "totalVolumeUSD": 1250000,
      "liquidityUSD": 320000,
      "endDate": "2026-12-31T23:59:59.000Z",
      "createdAt": "2026-01-15T00:00:00.000Z",
      "logo": "https://polymarket.com/images/market.png",
      "tradesCount": 8500,
      "trendingScore": 92.5,
      "volumeChange24hPercentage": 156.3,
      "rank": 1,
      "outcomes": [
        { "outcomeId": "71321...", "label": "Yes", "priceUSD": 0.35 },
        { "outcomeId": "71322...", "label": "No", "priceUSD": 0.65 }
      ]
    }
  ],
  "pagination": {
    "page": 1,
    "offset": 0,
    "limit": 20,
    "pageEntries": 1
  },
  "hostname": "node-xyz",
  "took": 42
}

Query Parameters

period
enum<string>
default:24h
Available options:
1h,
24h,
7d,
30d
input
string
categories
string

Comma-separated category names. Example: Politics,Sports.

platforms
string

Comma-separated platform names. Example: polymarket.

limit
number
default:20
Required range: 1 <= x <= 100
offset
number | null
default:0
Required range: x >= 0

Response

200 - application/json

Prediction Markets response

data
object[]
required
pagination
object
required
hostname
string
required
took
number
required