Sportsbook API Reference API

The Reference API from Sportsbook API — 2 operation(s) for reference.

Work with this as data

Every API here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for apis

7 MCP tools reach this
  • find_apisBrowse and filter every API in the catalog.
  • get_api_artifactsOne API's artifacts, grouped by type.
  • get_openapiThe primary OpenAPI for this API.
  • find_similar_apisAPIs that look like this one.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools

Call it yourself

curl for this page
This API
curl "https://apis.io/api/v1/apis/sportsbook-api-reference-api"
All apis
curl "https://apis.io/api/v1/apis?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no email required.

A second provider on the same verified email joins the account you already have.

OpenAPI Specification

sportsbook-api-reference-api-openapi.yml Raw ↑
openapi: 3.1.0
info:
  title: Sportsbook Betting Analysis Reference API
  description: Sportsbook API provides real-time betting odds data from major US sportsbooks including FanDuel, DraftKings, BetMGM, Kalshi, theScore, Fanatics, BetRivers, Polymarket, Bovada, and BetOnline. The API covers NFL, NBA, MLB, NHL, NCAA football, NCAA basketball, soccer, and more with spreads, moneylines, totals, halves, quarters, props, and futures markets. Odds update once per minute with positive EV, arbitrage, and middle opportunity detection.
  version: '1.0'
  contact:
    url: https://sportsbookapi.com/
  termsOfService: https://sportsbookapi.com/terms
servers:
- url: https://api.sportsbookapi.com
  description: Production server
security:
- rapidApiKey: []
tags:
- name: Reference
paths:
  /v1/sports:
    get:
      operationId: listSports
      summary: List Sports
      description: Retrieve all supported sports and their available leagues.
      tags:
      - Reference
      responses:
        '200':
          description: List of supported sports
          content:
            application/json:
              schema:
                type: object
                properties:
                  sports:
                    type: array
                    items:
                      type: object
                      properties:
                        name:
                          type: string
                        leagues:
                          type: array
                          items:
                            type: string
  /v1/bookmakers:
    get:
      operationId: listBookmakers
      summary: List Bookmakers
      description: Retrieve all supported sportsbooks that odds are aggregated from.
      tags:
      - Reference
      responses:
        '200':
          description: List of supported sportsbooks
          content:
            application/json:
              schema:
                type: object
                properties:
                  bookmakers:
                    type: array
                    items:
                      type: object
                      properties:
                        id:
                          type: string
                        name:
                          type: string
                        states:
                          type: array
                          items:
                            type: string
                          description: US states where this sportsbook is legal
components:
  securitySchemes:
    rapidApiKey:
      type: apiKey
      in: header
      name: X-RapidAPI-Key