Build the future of predictions.
Integrate Ante Social markets into your own application. Real-time odds, automated settlements, and a powerful liquidity layer at your fingertips.
Developer First
Our API is designed for scale. Whether you're building a trading bot, an analytics dashboard, or a completely new trading interface, we give you the tools to do it.
Webhooks for real-time updates
Comprehensive TypeScript types
99.99% Uptime SLA
// Example: Creating a new market via API
const response = await fetch('https://api.antesocial.com/v1/markets', {
method: 'POST',
headers: {
'Authorization': 'Bearer sk_live_...',
'Content-Type': 'application/json'
},
body: JSON.stringify({
title: "Will humans land on Mars by 2030?",
type: "poll",
options: ["Yes", "No"],
ends_at: "2030-01-01T00:00:00Z"
})
});
const market = await response.json();
console.log(market.id); // "mkt_123..."