# Football Odds
Get access to current football odds in Excel, Google Sheets or JSON API.
# Football Odds Data
# Leagues
We cover several football leagues across the globe
UK & EU football (soccer) odds EPL, FA Cup, German Bundesliga, UEFA Europa & Champions Leagues, Italian Serie A, Spanish La Liga, SPL, A-league and much more
US & Aussie football oddsNFL, XFL, CFL, College Football (NCAA), Aussie Rules (AFL)
# Bookmakers
See the full list of bookmakers →
# Football Odds in Excel and Google Sheets
Access current football odds in Excel and Google Sheets at the click of a button. Simply select the league and the region for bookmakers, and click Fetch to populate your spreadsheet with recent football odds.
Football odds data includes match listings, match start times, and odds (decimal format) from a range of global bookmakers. The delay on odds ranges from a few seconds to a few minutes, and typically no more than a minute during live football matches.
# Get Started
To get football odds into Excel or Google Sheets, you'll need
# Football Odds JSON API
Developers can access football odds with our simple JSON API. To see football odds for live and upcoming games, specify the sport, region of bookmakers (us, us2, uk, eu or au) and your API key in a simple GET request. For more details, see the API docs.
Example Request
GET https://api.the-odds-api.com/v4/sports/soccer_epl/odds?regions=uk&apiKey=YOUR_API_KEY
{
"id": "0ba40aad3c918f52363117a71f5de8e8",
"sport_key": "soccer_epl",
"sport_title": "EPL",
"commence_time": "2023-04-01T11:30:00Z",
"home_team": "Manchester City",
"away_team": "Liverpool",
"bookmakers": [
{
"key": "williamhill",
"title": "William Hill",
"last_update": "2023-03-26T23:04:06Z",
"markets": [
{
"key": "h2h",
"last_update": "2023-03-26T23:04:06Z",
"outcomes": [
{ "name": "Liverpool", "price": 5.5 },
{ "name": "Manchester City", "price": 1.57 },
{ "name": "Draw", "price": 4.0 }
]
}
]
},
...
# Get Started
Check out the API docs
Check out our Python and NodeJS code samples