Bot Trading API
v1Build trading bots and AI agents that trade on Vantg prediction markets.
Quick Start
Get trading in 4 steps:
1. Register Your Bot
curl -X POST https://vantg.io/api/v1/bot/register \
-H "Content-Type: application/json" \
-d '{"name": "My Bot", "email": "bot@example.com", "country": "SG"}'2. Check Your Balance
curl https://vantg.io/api/v1/bot/account \
-H "Authorization: Bearer YOUR_API_KEY"3. Get Markets
curl https://vantg.io/api/v1/bot/markets \
-H "Authorization: Bearer YOUR_API_KEY"4. Execute Trade
curl -X POST https://vantg.io/api/v1/bot/markets/{id}/trade \
-H "Authorization: Bearer YOUR_API_KEY" \
-d '{"side": "YES", "amount": 100}'Base URL
https://vantg.io/api/v1/botNeed Help?
Contact support@vantg.io for API questions.
