curl -X POST "https://pm-t1.bxingupdate.com/bvapi/markets/batch-trade" \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"orders": [
{
"marketConditionId": "0xabc123...",
"marketQuestion": "Will BTC exceed $100k by June?",
"outcome": "YES",
"orderSize": 10,
"price": 0.65,
"isLimitOrder": true,
"orderType": "GTC",
"order": {
"maker": "0x1111111111111111111111111111111111111111",
"signer": "0x1111111111111111111111111111111111111111",
"taker": "0x0000000000000000000000000000000000000000",
"tokenId": "69136365945621600854789649488423522395843457249417452310260493085275775221076",
"makerAmount": "650000",
"takerAmount": "1000000",
"side": "BUY",
"expiration": "0",
"nonce": "0",
"feeRateBps": "0",
"signature": "0xabcdef...",
"salt": 599228746038,
"signatureType": 0
},
"reasoning": "BTC momentum signal positive",
"source": "sdk:my-skill"
},
{
"marketConditionId": "0xdef456...",
"marketQuestion": "Will ETH exceed $5k by June?",
"outcome": "NO",
"orderSize": 5,
"price": 0.40,
"isLimitOrder": true,
"orderType": "GTC",
"order": {
"maker": "0x1111111111111111111111111111111111111111",
"signer": "0x1111111111111111111111111111111111111111",
"taker": "0x0000000000000000000000000000000000000000",
"tokenId": "12345678901234567890123456789012345678901234567890123456789012345678",
"makerAmount": "400000",
"takerAmount": "1000000",
"side": "BUY",
"expiration": "0",
"nonce": "0",
"feeRateBps": "0",
"signature": "0x123456...",
"salt": 599228746039,
"signatureType": 0
},
"reasoning": "ETH overvalued based on model",
"source": "sdk:my-skill"
}
]
}'