Create a Market
POST /markets
Content-Type: application/json
{
"question": "Will Token X reach a market cap of 1,000,000 USD by 2025-12-31?",
"tokenAddress": "7GHsz...EByX" , /* Solana token address for Token X */
"outcomes": ["Yes", "No"],
"expireAt": "2025-12-31T00:00:00Z",
"currency": "POLYPUMP"
}{
"id": "market_8a9f5b2c",
"question": "Will Token X reach a market cap of 1,000,000 USD by 2025-12-31?",
"tokenAddress": "7GHsz...EByX",
"outcomes": [
{ "name": "Yes", "odds": 0.5, "totalStake": 0 },
{ "name": "No", "odds": 0.5, "totalStake": 0 }
],
"currency": "POLYPUMP",
"expireAt": "2025-12-31T00:00:00Z",
"status": "open",
"createdAt": "2025-09-10T13:45:30Z",
"creator": "Fx1...abc", /* wallet address of creator */
"feePercentage": {
"burn": 0.05,
"developer": 0.05
}
}List Markets / View Market
Last updated