Fixture odds
Fixture odds
GET
/v1/fixtures/{id}/odds
Full prices for every market, one entry per requested bookmaker — each of opening, closing and in-play carries the line and both prices. Bet365 (the default) serves eleven markets: 1X2 plus Asian handicap, goal, corner, corner-Asian and card lines — full-time and half-time — and both-teams-to-score. Add more books with ?bookmakers=bet365,pinnacle,… (GET /v1/bookmakers) — they carry 1X2, Asian handicap, goal line and corner line where recorded. Bookmakers beyond bet365 require the Ultra plan.
See what every bookmaker carries, per market →
Parameters
| id | required | Fixture id. |
| bookmakers | optional | Comma list of bookmaker slugs, default bet365 — e.g. bet365,pinnacle,1xbet. One odds entry per bookmaker; slugs come from GET /v1/bookmakers. Non-bet365 slugs need the Ultra plan. |
| market | optional | 1x2 | asian | goalline | corner | corner_asian | cards | cards_asian | asian_half | goalline_half | corner_half | btts. |
Example
GET /v1/fixtures/{id}/odds
curl https://api.5dollarfootballapi.com/v1/fixtures/{id}/odds
-H "Authorization: Bearer fb_live_your_key"
{
"success": 1,
"data": {
"fixture_id": 197590518,
"bookmakers": [
{
"id": 281, "name": "Bet 365", "slug": "bet365",
"odds": {
"1x2": { "opening": { "home": 1.53, "draw": 3.75, "away": 5.0 }, "closing": { "home": 1.18, "draw": 5.5, "away": 15.0 }, "inplay": null },
"asian_handicap": {
"opening": { "line": -0.25, "home": 1.95, "away": 1.85 },
"closing": { "line": -0.5, "home": 2.02, "away": 1.78 },
"inplay": { "line": -1.0, "home": 1.9, "away": 1.9 }
},
"goal_line": {
"opening": { "line": 2.5, "over": 1.9, "under": 1.9 },
"closing": { "line": 2.75, "over": 1.85, "under": 1.95 },
"inplay": { "line": 3.0, "over": 2.05, "under": 1.75 }
},
"corner_line": {
"opening": { "line": 9.5, "over": 1.85, "under": 1.85 },
"closing": { "line": 10, "over": 1.9, "under": 1.8 },
"inplay": { "line": 10.5, "over": 2.0, "under": 1.7 }
},
"corner_asian": { "opening": { "line": 0, "home": 1.875, "away": 1.875 }, "closing": null, "inplay": null },
"card_line": { "opening": { "line": 4.5, "over": 1.95, "under": 1.75 }, "closing": { "line": 5, "over": 1.85, "under": 1.85 }, "inplay": null },
"card_asian": { "opening": { "line": 0, "home": 1.9, "away": 1.8 }, "closing": null, "inplay": null },
"asian_handicap_half": { "opening": { "line": -0.25, "home": 1.98, "away": 1.82 }, "closing": { "line": -0.25, "home": 2.05, "away": 1.75 }, "inplay": null },
"goal_line_half": { "opening": { "line": 1.0, "over": 1.95, "under": 1.85 }, "closing": { "line": 1.25, "over": 2.0, "under": 1.8 }, "inplay": { "line": 1.5, "over": 2.1, "under": 1.7 } },
"corner_line_half": { "opening": { "line": 4.5, "over": 1.85, "under": 1.85 }, "closing": { "line": 4.5, "over": 1.9, "under": 1.8 }, "inplay": { "line": 5, "over": 2.0, "under": 1.7 } },
"btts": { "opening": { "yes": 1.8, "no": 1.95 }, "closing": { "yes": 1.72, "no": 2.05 }, "inplay": null }
}
}
]
}
}
// ?bookmakers=bet365,pinnacle,1xbet returns one entry per book
Need a key? Create a free account — a working key is issued instantly, no card required.