Alpha — This endpoint is part of the Prediction Markets API, currently in early access. May change without notice.
Query Parameters
The prediction market platform. Currently supported:
polymarket.The platform-specific market identifier.
Response
Full market details object.
Show Market Details
Show Market Details
Internal market ID.
Platform name (e.g.,
polymarket).Platform-specific market ID.
URL-friendly market slug.
Blockchain chain ID (e.g.,
"evm:137" for Polygon).Market contract address.
Whether this is a neg-risk market (multi-outcome).
The market question.
Detailed market description.
Market category (e.g.,
politics, sports).Array of tags associated with the market.
Market type (
binary, categorical, scalar).Market status:
active, closed, or resolved. Markets with a past endDate are automatically marked closed even if the database hasn’t been updated yet.Parent event identifier, if this market belongs to a grouped event.
null for standalone markets. Use with /api/2/pm/event/details to fetch the full event.Parent event URL-friendly slug.
null for standalone markets.Parent event title.
null for standalone markets.Array of outcome objects.
Show Outcome Object
Show Outcome Object
Internal outcome ID.
Outcome token ID (used for trading, balance queries, and price lookups).
Outcome label (e.g., “Yes”, “No”).
Current price (0 to 1).
24-hour price change as a percentage (e.g., price went from 0.30 to 0.35 →
priceChange24hPercentage: 16.67).7-day price change as a percentage (e.g., price went from 0.30 to 0.35 →
priceChange7dPercentage: 16.67).24-hour trading volume for this outcome in USD.
7-day trading volume for this outcome in USD.
All-time trading volume for this outcome in USD.
Outcome liquidity in USD (nullable).
Open interest in USD (nullable).
Number of holders (nullable).
Market statistics. All monetary values are in USD.
Show Stats Object
Show Stats Object
All-time cumulative trading volume in USD across all outcomes.
Trading volume in the last 24 hours in USD.
Trading volume in the last 7 days in USD.
Current total liquidity available in the order book in USD.
Total open interest across all outcomes.
Total number of unique holders across all outcomes.
Total number of trades executed on this market.
Number of trades in the last 24 hours.
Market metadata.
Show Metadata Object
Show Metadata Object
Market creation timestamp.
Expected resolution date (end date of the market).
Actual resolution timestamp (if resolved).
Whether the market has been resolved.
The winning outcome label (if resolved).
Market logo URL.
Market URL on the platform.
Market creator address.
Market resolver address.
Reward pool amount.
Platform fee.
Server hostname that handled the request.
Time taken in milliseconds.
Usage Example
curl -X GET "https://api.mobula.io/api/2/pm/market/details?platform=polymarket&marketId=0x1234..."
Example Response
{
"data": {
"id": "polymarket:0x1234...",
"platform": "polymarket",
"marketId": "0x1234...",
"slug": "will-eth-reach-10k-2026",
"chainId": "evm:137",
"contractAddress": null,
"negRisk": false,
"question": "Will ETH reach $10,000 by end of 2026?",
"description": "This market resolves to Yes if the price of ETH reaches $10,000 on any major exchange before December 31, 2026.",
"category": "crypto",
"tags": ["ethereum", "price"],
"type": "binary",
"status": "active",
"outcomes": [
{ "outcomeId": "71321...", "label": "Yes", "priceUSD": 0.35, "priceChange24hPercentage": 9.38, "priceChange7dPercentage": 16.67, "volume24hUSD": 22000, "volume7dUSD": 95000, "totalVolumeUSD": 620000, "liquidityUSD": 160000, "openInterestUSD": 290000, "holdersCount": 800 },
{ "outcomeId": "71322...", "label": "No", "priceUSD": 0.65, "priceChange24hPercentage": -4.41, "priceChange7dPercentage": -7.14, "volume24hUSD": 23000, "volume7dUSD": 115000, "totalVolumeUSD": 630000, "liquidityUSD": 160000, "openInterestUSD": 290000, "holdersCount": 700 }
],
"stats": {
"totalVolumeUSD": 1250000,
"volume24hUSD": 45000,
"volume7dUSD": 210000,
"liquidityUSD": 320000,
"openInterestUSD": 580000,
"holdersCount": 1234,
"tradesCount": 8500,
"trades24h": 120
},
"metadata": {
"createdAt": "2026-01-15T00:00:00.000Z",
"endDate": "2026-12-31T23:59:59.000Z",
"resolvedAt": null,
"resolved": false,
"resolvedOutcome": null,
"creator": null,
"resolver": null,
"rewardPool": null,
"platformFee": null,
"logo": "https://polymarket.com/images/market.png",
"url": "https://polymarket.com/event/will-eth-reach-10k-2026"
}
},
"hostname": "pm-api-prod-eu-abc123",
"took": 42
}