Find sports betting arbitrage opportunities from The Odds API
Find sports betting arbitrage opportunities from The Odds API.
5000 (raw units)
price
3
calls / 30d
3
unique payers
2026-09-08
updated
Provider
predict.memoryapi.org · discovered, not yet claimed by its owner
Payment (x402 accepts[])
[
{
"scheme": "exact",
"network": "eip155:8453",
"payTo": "0x24FAcafEB49b4e3FACF0B3e69604A2F4640c9bf2",
"asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
"amount": "5000",
"maxTimeoutSeconds": 300
}
]Output schema
{
"bazaar": {
"info": {
"description": "Sports betting arbitrage detection. Returns opportunities where implied probabilities < 100%.",
"iconUrl": "https://memoryapi.org/icon.png",
"input": {
"method": "GET",
"queryParams": {
"markets": "h2h",
"regions": "us",
"sport": "basketball_nba"
},
"schema": {
"properties": {
"markets": {
"description": "h2h, spreads, totals (default: h2h)",
"type": "string"
},
"regions": {
"description": "us, uk, eu, au (default: us)",
"type": "string"
},
"sport": {
"description": "basketball_nba, americanfootball_nfl, baseball_mlb, icehockey_nhl, soccer_epl, mma_mixed_martial_arts, tennis_atp_wimbledon, golf_masters_tournament_winner",
"type": "string"
}
},
"required": []
},
"type": "http"
},
"output": {
"example": {
"arb_count": 1,
"opportunities": [
{
"bets": [],
"game": "Team A vs Team B",
"profit_margin_pct": 2.5
}
],
"sport": "basketball_nba",
"success": true
}
},
"serviceName": "MemoryAPI Predict",
"tags": [
"prediction",
"markets",
"trading"
]
},
"schema": {
"properties": {
"input": {
"properties": {
"method": {
"enum": [
"GET"
],
"type": "string"
}
},
"required": [
"method"
]
}
}
}
}
}Use it
curl
curl "https://predict.memoryapi.org/x402/predict/sports_arb" # -> 402 Payment Required, accepts[] lists how to pay # retry with a PAYMENT-SIGNATURE (or PAYMENT header) once paid
JavaScript
const res = await fetch("https://predict.memoryapi.org/x402/predict/sports_arb");
if (res.status === 402) {
const { accepts } = await res.json();
// pay one of accepts[] via an x402 client, then retry with the payment header
}Python
import httpx
res = httpx.get("https://predict.memoryapi.org/x402/predict/sports_arb")
if res.status_code == 402:
accepts = res.json()["accepts"]
# pay one of accepts[] via an x402 client, then retry with the payment headerMachine-readable
Everything on this page is also available as clean JSON at /resources/14324.json, and this resource appears in /discovery/resources and /discovery/search.