Sportsbooks
Get a list of available sportsbooks and their current status, including which tier is required to access each book’s data.
Endpoints
GET /api/v1/sportsbooksRequires an API key. Available on all tiers (Free included). Unauthenticated requests return 401.
List All Sportsbooks
Example Requests
cURL
curl -X GET "https://api.sharpapi.io/api/v1/sportsbooks" \
-H "X-API-Key: YOUR_API_KEY"Response
Real response, truncated to 6 of the 39 books currently returned (has_limits, added September 2026, has been inserted into each row to show the current shape). Every entry carries the full field set; numerical_id is omitted on unmapped books (like Bet365 US below — also the only book ID with capitals and a space, kept in display-name form for historical reasons):
{
"data": [
{
"id": "draftkings",
"display_name": "DraftKings",
"short_name": "DraftKings",
"numerical_id": 17,
"category": "major_us",
"is_sharp": false,
"has_live_odds": true,
"has_player_props": true,
"has_limits": false,
"regions": ["US"],
"requires_tier": "free",
"status": "active",
"event_count": 457,
"last_update": "2026-07-02T18:17:55.852268618Z",
"coming_soon": false
},
{
"id": "fanduel",
"display_name": "FanDuel",
"short_name": "FanDuel",
"numerical_id": 19,
"category": "major_us",
"is_sharp": false,
"has_live_odds": true,
"has_player_props": true,
"has_limits": false,
"regions": ["US"],
"requires_tier": "free",
"status": "active",
"event_count": 494,
"last_update": "2026-07-02T18:17:55.921509102Z",
"coming_soon": false
},
{
"id": "Bet365 US",
"display_name": "Bet365 US",
"short_name": "Bet365 US",
"category": "regional",
"is_sharp": false,
"has_live_odds": true,
"has_player_props": true,
"has_limits": false,
"regions": ["US"],
"requires_tier": "hobby",
"status": "active",
"event_count": 35,
"last_update": "2026-07-02T18:16:34.848726023Z",
"coming_soon": false
},
{
"id": "polymarket",
"display_name": "Polymarket",
"short_name": "Polymarket",
"numerical_id": 29,
"category": "exchange",
"is_sharp": false,
"has_live_odds": false,
"has_player_props": false,
"has_limits": false,
"regions": ["US"],
"requires_tier": "hobby",
"status": "active",
"event_count": 1040,
"last_update": "2026-07-02T18:17:44.093204728Z",
"coming_soon": false
},
{
"id": "saba",
"display_name": "SABA",
"short_name": "SABA",
"numerical_id": 32,
"category": "regional",
"is_sharp": false,
"has_live_odds": true,
"has_player_props": true,
"has_limits": false,
"regions": ["GLOBAL"],
"requires_tier": "pro",
"status": "active",
"event_count": 2930,
"last_update": "2026-07-02T18:17:50.012487996Z",
"coming_soon": false
},
{
"id": "pinnacle",
"display_name": "Pinnacle",
"short_name": "Pinnacle",
"numerical_id": 28,
"category": "sharp",
"is_sharp": true,
"has_live_odds": true,
"has_player_props": true,
"has_limits": true,
"regions": ["GLOBAL"],
"requires_tier": "sharp",
"status": "active",
"event_count": 740,
"last_update": "2026-07-02T18:17:55.967604052Z",
"coming_soon": false
}
],
"updated_at": "2026-07-02T18:17:55.590257979Z"
}Sportsbook Object Schema
| Field | Type | Description |
|---|---|---|
id | string | Unique identifier (use in API filters) |
numerical_id | integer | Stable integer key (frozen, never reused; omitted when unmapped). New (May 2026) — additive, optional. See Entity reference IDs. |
display_name | string | Human-readable name |
short_name | string | Short display name |
category | string | Book category (e.g. major_us, regional, sharp) |
has_live_odds | boolean | Supports live/in-play odds |
has_player_props | boolean | Supports player prop markets |
has_limits | boolean | null | Publishes per-selection bet limits (max_bet on odds rows). Derived from the book’s current snapshot — true, false, or null when no rows have been observed. New (September 2026); see below. |
regions | string[] | Available regions: US, UK, EU, AU, GLOBAL |
is_sharp | boolean | Whether the book is considered a sharp/efficient market |
status | string | active or inactive |
event_count | integer | Number of events currently available |
last_update | string | ISO 8601 timestamp of last data update |
requires_tier | string | Minimum tier required: free, hobby, pro, or sharp (string; never null) |
coming_soon | boolean | true for announced books not yet live |
Changed (September 2026): two has_player_props declarations corrected. has_player_props is true when a book is declared to support player props or is currently serving player_* markets. fliff: true → false — Fliff prices moneyline, spread and totals only and has never emitted a player-prop market. prophetx: false → true — ProphetX emits player props on every active day on record, so it already read true whenever it was active; it now reads true during quiet windows too. If you filter books on has_player_props, fliff leaves your book set and prophetx is always in it. The Props column in the per-book tables below is regenerated from the live response and reflects the correction from its next regeneration.
The event_count may be 0 and last_update may be null if a sportsbook is temporarily unavailable or experiencing data delays.
New (May 2026): numerical_id
numerical_id is a frozen, dense-from-1 integer assigned per sportsbook in the SharpAPI atlas. It’s stable across rebrands and slug renames — pinnacle is numerical_id: 28 regardless of any future display-name changes.
- Frozen: never reused or remapped.
- Optional: omitted for sportsbooks not yet mapped (e.g. brand-new books in the catalog before assignment); slug
idis always present. - Domain-scoped: unique across sportsbooks only.
Every odds row and opportunity leg also carries a matching sportsbook_ref block ({id, label, numerical_id}). See Entity reference IDs.
New (September 2026): has_limits
has_limits reports whether a sportsbook publishes per-selection bet limits — the max_bet field on odds rows. Only a small minority of books do (3 of 39 at the time of writing), and on every other book max_bet is simply absent from the row, which looks identical to a selection that happens to carry no limit. has_limits is the per-book answer to “is this absence a missing capability or a missing value?”
| Value | Meaning |
|---|---|
true | At least one row in the book’s current snapshot carries max_bet |
false | Rows were observed and none carry max_bet — a real negative finding |
null | No rows observed, so no claim is made — rows with coming_soon: true and books that currently have zero rows |
- Derived, not declared. Unlike
has_live_oddsandhas_player_props, which combine observed data with a per-book configuration entry,has_limitsis computed from the odds SharpAPI is serving right now and nothing else. When a book starts or stops publishing limits, the flag follows on its own — the set of limit-publishing books does change, so read the flag rather than caching a list of books. - Any row, not every row.
truemeans the book publishes limits somewhere in its current snapshot; individual rows can still omitmax_bet. Treat it as “worth readingmax_beton this book”, not as a guarantee on every selection. - Always present;
nullis notfalse. The key is on every row. Guard the three states explicitly — a client that treatsnullas “no limits” re-creates the ambiguity the field exists to remove. - Same freshness as
last_update. Both are recomputed in the same pass, sohas_limitslags the true book state by the same amount: at most about 40 seconds across the recompute, in-process response cache and HTTP cache layers, and typically 15 seconds or less.
See Liquidity and Limits for how to use max_bet once a book reports has_limits: true.
Book Access by Tier
The per-tier and per-category book tables below are regenerated from the live /sportsbooks response when the docs are updated (last regenerated 2026-07-02) and can lag the roster between updates. The authoritative, always-current list is the GET /api/v1/sportsbooks response itself — fetch it rather than relying on these tables.
The requires_tier field indicates the minimum subscription tier needed to access a sportsbook’s odds data through the API.
| Tier | Books Available | Included Sportsbooks |
|---|---|---|
| Free | 2 | FanDuel, DraftKings |
| Hobby | 32 | + BetOnline, Kalshi, Goldrush, Bally Bet, Galera.bet, Polymarket, Bovada, Hard Rock Bet, Ladbrokes, BetRivers, betPARX, Rebet, Stake, Sportzino, Betway, Unibet, theScore Bet, bwin, BetMGM, SX Bet, Novig, Fliff, Fanatics, Underdog Fantasy, Bet365 US, Caesars, Betano, Fanatics Markets, Sky Bet, Thrillzz |
| Pro | 33 | + SABA |
| Sharp | 39 | Choose any 25, including sharp books like Pinnacle |
| Enterprise | 39 | All available sportsbooks |
requires_tier is the book’s minimum tier class — it is not the only gate. Each tier also has a book-count cap (Free 2, Hobby 5, Pro 15, Sharp 25, Enterprise unlimited), and Free keys are additionally whitelisted to DraftKings + FanDuel only — so a Free key cannot access eighteenbet or sportingbet_br even though those books carry requires_tier: "free". See the tier comparison for the full matrix.
Pinnacle, Circa Sports, Bookmaker, ProphetX, and Betfair require Sharp tier or higher. Pinnacle is a sharp book whose efficient lines are used as the reference for +EV calculations. Circa Sports is another known sharp book with deliberately tight lines and a focused prop menu. Requesting sharp book odds on Free, Hobby, or Pro tier will return a 403 tier_restricted error.
Understanding requires_tier
| Value | Meaning |
|---|---|
"free" | Available on all tiers, including Free |
"hobby" | Requires Hobby tier or higher |
"pro" | Requires Pro tier or higher |
"sharp" | Requires Sharp or Enterprise tier |
Supported Sportsbooks
Major US Books
| ID | Name | Live | Props | Tier |
|---|---|---|---|---|
draftkings | DraftKings | Yes | Yes | Free |
fanduel | FanDuel | Yes | Yes | Free |
ballybet | Bally Bet | Yes | Yes | Hobby |
Bet365 US | Bet365 US | Yes | Yes | Hobby |
betmgm | BetMGM | Yes | Yes | Hobby |
betonline | BetOnline | Yes | Yes | Hobby |
betparx | betPARX | Yes | Yes | Hobby |
betrivers | BetRivers | Yes | Yes | Hobby |
bovada | Bovada | Yes | Yes | Hobby |
caesars | Caesars | Yes | Yes | Hobby |
fanatics | Fanatics | Yes | Yes | Hobby |
fanatics_markets | Fanatics Markets | Yes | No | Hobby |
fliff | Fliff | Yes | No | Hobby |
hardrock | Hard Rock Bet | Yes | Yes | Hobby |
novig | Novig | Yes | Yes | Hobby |
rebet | Rebet | Yes | Yes | Hobby |
sportzino | Sportzino | Yes | No | Hobby |
thescorebet | theScore Bet | Yes | Yes | Hobby |
thrillzz | Thrillzz | Yes | Yes | Hobby |
underdog | Underdog Fantasy | No | Yes | Hobby |
Sharp Books
| ID | Name | Live | Props | Tier |
|---|---|---|---|---|
onexbet | 1xBet | Yes | No | Sharp |
circa | Circa Sports | Yes | No | Sharp |
pinnacle | Pinnacle | Yes | Yes | Sharp |
sbobet | SBOBET | Yes | No | Sharp |
Reading Pinnacle timestamps. Each odds row carries a single timestamp field — the time SharpAPI last refreshed that row through its pipeline (feed-freshness, matching OpticOdds), which advances every ingest cycle even when Pinnacle holds the line steady. It is not when the price last moved; SharpAPI no longer exposes a separate “when the price last changed” field. See understanding the timestamp field for what “stale” actually means on their feed.
International
| ID | Name | Live | Props | Tier |
|---|---|---|---|---|
betano | Betano | Yes | Yes | Hobby |
betway | Betway | Yes | Yes | Hobby |
bwin | bwin | Yes | Yes | Hobby |
galera | Galera.bet | No | Yes | Hobby |
goldrush | Goldrush | Yes | No | Hobby |
ladbrokes | Ladbrokes | Yes | Yes | Hobby |
skybet | Sky Bet | Yes | No | Hobby |
stake | Stake | Yes | Yes | Hobby |
sx_bet | SX Bet | Yes | No | Hobby |
unibet | Unibet | Yes | Yes | Hobby |
saba | SABA | Yes | Yes | Pro |
Exchanges
| ID | Name | Live | Props | Tier |
|---|---|---|---|---|
betfair | Betfair | Yes | Yes | Sharp |
prophetx | ProphetX | Yes | Yes | Sharp |
Betfair carries back prices only. The exchange quotes two sides for every selection — the back price (bet for an outcome) and the lay price (bet against it) — and SharpAPI’s Betfair feed serves the back side exclusively. Lay prices are not available on any endpoint, and odds rows carry no side field: every Betfair price you receive is a back quote. Exchange order-book depth and liquidity figures are likewise not included.
Prediction Markets
| ID | Name | Live | Props | Tier |
|---|---|---|---|---|
kalshi | Kalshi | Yes | No | Hobby |
polymarket | Polymarket | No | No | Hobby |
Polymarket and Kalshi are prediction market platforms. Unlike traditional sportsbooks, they use binary outcome contracts priced between $0 and $1. SharpAPI normalizes contract prices into standard odds formats (American, decimal, implied probability) so you can compare them directly with sportsbook odds. Kalshi is CFTC-regulated.
Polymarket rows additionally carry a polymarket_resolution field reflecting the upstream UMA optimistic-oracle lifecycle (settled_normal / voided / disputed / proposed / unknown). See Polymarket Resolution for the per-value semantics and the upstream caveat that cancellation, participant withdrawal, and event-not-occurred all collapse to the single voided bucket.
Sharp vs Soft Books
Sharp Books
- Lower vig (juice) — tighter margins mean better odds accuracy
- Efficient lines — used as the reference for +EV and fair value calculations
- Not available in all regions — Pinnacle is not licensed in the US
- Examples: Pinnacle, Circa Sports, Bookmaker
Soft Books
- Higher vig — wider margins create more room for +EV opportunities
- More promotions — bonuses, boosts, and free bets
- Slower line movement — may lag behind sharp market moves
- Where value is found — the gap between soft book odds and sharp reference creates +EV
- Examples: DraftKings, FanDuel, BetMGM, Caesars
Sharp books like Pinnacle set efficient lines quickly. Soft books often lag behind, creating windows where their odds offer positive expected value compared to the sharp reference. This is the foundation of +EV betting strategy.
Building a live betting tool? DraftKings and FanDuel have has_live_odds: true but frequently suspend markets during scoring plays and key moments. If you need continuous live coverage, Pinnacle (Sharp tier) is the reliable reference. See Live vs. Pre-Match for a full breakdown of book behavior during live play.
Related Endpoints
- Odds Snapshot - Filter odds by sportsbook
- Best Odds - Best odds across all books with sharp reference
- Odds Comparison - Compare odds across books side by side
- Sports - List available sports