Prediction Markets
The Odds API
economyThe Odds API is an cost-effective prediction markets provider offering Sports Betting Odds, Historical Sports Odds through Aweb's unified API. It features none streaming support with premium-tier latency.
Specifications
Capabilities (2)
Quick start
Use The Odds API through Aweb's unified API — no provider-specific SDK needed.
cURL
curl -X POST https://api.aweb.studio/v1/execute \
-H "Authorization: Bearer $AWEB_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"provider": "odds-api",
"capability": "prediction.sports-odds",
"input": { "prompt": "Hello from The Odds API!" }
}'TypeScript
import { Aweb } from '@aweb/core';
const aweb = new Aweb({ apiKey: process.env.AWEB_API_KEY });
const result = await aweb.execute({
provider: 'odds-api',
capability: 'prediction.sports-odds',
input: { prompt: 'Hello from The Odds API!' },
});
console.log(result.output);