12 sports, 38M+ odds records, 230K+ matches, 15+ years of history.
Familiar response format, better pricing, zero lock-in.
Endpoints and response envelopes mirror the industry standard. Migrating an existing integration is a one-line URL swap.
Direct database access with aggressive caching. Sub-50ms response times for most queries.
38M+ odds records across 370+ markets and 23+ bookmakers. Historical movement tracking included.
Unique feature: search fixtures by odds combinations. Find all matches where Home โค 1.85 AND Over 2.5 โค 1.95.
API key authentication, rate limiting, TLS, OWASP security headers, request tracing, IP whitelisting.
15+ years of historical data for football, 11+ years for other sports. Perfect for backtesting algorithms.
# Standard sport-prefixed endpoint
curl "https://data.awastats.com/football/v3/fixtures?date=2026-04-11" -H "X-API-Key: ak_live_your_key_here"
# Or use our branded endpoints
curl "https://data.awastats.com/commercial/v1/football/fixtures?date_from=2026-04-01&date_to=2026-04-30" -H "X-API-Key: ak_live_your_key_here"
# Pattern search for odds combinations (unique to AWA)
curl -X POST "https://data.awastats.com/commercial/v1/odds/pattern-search" -H "X-API-Key: ak_live_your_key_here" -H "Content-Type: application/json" -d '{
"conditions": [
{"market": "Match Winner", "label": "Home", "operator": "between", "value": 1.80, "value2": 1.90},
{"market": "Goals Over/Under", "label": "Over 2.5", "operator": "lte", "value": 1.95}
],
"sport": "football",
"limit": 100
}'