Get the top trending prediction markets on Polymarket, sorted by 24h volume
Get the top trending prediction markets on Polymarket, sorted by 24h volume. Returns up to 5 markets by default.
10000 (raw units)
price
6
calls / 30d
4
unique payers
2026-09-14
updated
Provider
mechamanda.com · discovered, not yet claimed by its owner
Payment (x402 accepts[])
[
{
"scheme": "exact",
"network": "eip155:8453",
"payTo": "0xbAd1Aa224bFe4fEb460E12b2553DcDf98a7098d0",
"asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
"amount": "10000",
"maxTimeoutSeconds": 300
}
]Output schema
{
"bazaar": {
"info": {
"input": {
"method": "GET",
"queryParams": {
"limit": "5",
"offset": "0"
},
"type": "http"
},
"output": {
"example": [
{
"description": "This market resolves Yes if...",
"liquidity": 542000,
"outcomePrices": [
"0.65",
"0.35"
],
"outcomes": [
"Yes",
"No"
],
"question": "Will Bitcoin reach $100k by end of 2026?",
"volume": 1250000
}
],
"type": "json"
}
},
"schema": {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"properties": {
"input": {
"additionalProperties": false,
"properties": {
"method": {
"enum": [
"GET"
],
"type": "string"
},
"queryParams": {
"properties": {
"limit": {
"description": "Max number of events to return (default 5)",
"type": "string"
},
"offset": {
"description": "Pagination offset (default 0)",
"type": "string"
},
"tag_slug": {
"description": "Filter by category tag (e.g. politics, sports, crypto)",
"type": "string"
}
},
"type": "object"
},
"type": {
"const": "http",
"type": "string"
}
},
"required": [
"type",
"method"
],
"type": "object"
},
"output": {
"properties": {
"example": {
"items": {
"properties": {
"description": {
"description": "Market description",
"type": "string"
},
"liquidity": {
"description": "Current liquidity in the market",
"type": "number"
},
"outcomePrices": {
"description": "Current prices for each outcome (0-1)",
"items": {
"type": "string"
},
"type": "array"
},
"outcomes": {
"description": "Possible outcomes (e.g. Yes/No)",
"items": {
"type": "string"
},
"type": "array"
},
"question": {
"description": "The market question",
"type": "string"
},
"volume": {
"description": "Total trading volume",
"type": "number"
}
},
"required": [
"question",
"outcomes",
"outcomePrices",
"volume"
],
"type": "object"
},
"type": "array"
},
"type": {
"type": "string"
}
},
"required": [
"type"
],
"type": "object"
}
},
"required": [
"input"
],
"type": "object"
}
}
}Use it
curl
curl "https://mechamanda.com/api/polymarket/trending" # -> 402 Payment Required, accepts[] lists how to pay # retry with a PAYMENT-SIGNATURE (or PAYMENT header) once paid
JavaScript
const res = await fetch("https://mechamanda.com/api/polymarket/trending");
if (res.status === 402) {
const { accepts } = await res.json();
// pay one of accepts[] via an x402 client, then retry with the payment header
}Python
import httpx
res = httpx.get("https://mechamanda.com/api/polymarket/trending")
if res.status_code == 402:
accepts = res.json()["accepts"]
# pay one of accepts[] via an x402 client, then retry with the payment headerMachine-readable
Everything on this page is also available as clean JSON at /resources/6446.json, and this resource appears in /discovery/resources and /discovery/search.