Skip to content
SportsBetEdge Logo
Sports Bet Edge

Pinnacle API Guide 2026

Sharp Sportsbook API for Automated Betting

Last updated:  Jun 10, 2026
Pinnacle API Guide 2026 — Sharp Sportsbook API for Automated Betting

Pinnacle does not offer a public API — here is what you use instead

Pinnacle is the sharpest sportsbook in the world. It operates with 1–3% overround, accepts the largest limits in the industry, and never bans or limits winning accounts. Its closing lines are the gold standard for calculating true probability — used as the primary sharp reference benchmark by every major +EV signal tool and arbitrage scanner.

However, Pinnacle does not offer a public developer API for odds data or bet placement. Their odds are available on their website and app; their historical placement API (api.pinnacle.com) is no longer accessible to retail or semi-institutional users as of 2025.

In 2026, developers access Pinnacle data and execution through three routes:

  • Odds data: SportsGameOdds (REST + WebSocket, raw odds with results) and SharpAPI (REST + SSE, with built-in no-vig lines and +EV detection)
  • Bet placement: Sharp brokers — SportMarket Pro, MadMarket, and AsianConnect88 — provide documented REST APIs that route bets through Pinnacle and the Asian sharp book network

SharpAPI: the Pinnacle odds API for developers

SharpAPI aggregates real-time Pinnacle odds via proprietary data pipelines and serves them through a clean REST API and SSE streaming endpoint. It was built specifically for the use case of comparing Pinnacle's sharp lines against soft sportsbooks for +EV detection.

Key advantages over DIY approaches:

SharpAPIDIY scraping
Setup timeUnder 5 minutesDays to weeks
Reliability99.9% uptime SLABreaks on HTML changes
IP ban riskNoneHigh — requires proxy rotation
No-vig linesPre-calculated (Hobby+)Build your own math
+EV detectionBuilt-in (Pro+)Build from scratch
Real-time streamingSSE built-inPoll and diff manually
ToS complianceFully compliantViolates Pinnacle ToS

SharpAPI key endpoints and data format

SharpAPI uses a TypeScript/JavaScript SDK (@sharpapi/client) with a clean async interface:

import { SharpAPI } from '@sharpapi/client';

const sharp = new SharpAPI({ apiKey: 'sk_live_your_key' });

// Get Pinnacle odds for NBA games
const odds = await sharp.odds.list({
  league: 'NBA',
  sportsbooks: ['pinnacle'],
});

// Get +EV opportunities benchmarked against Pinnacle fair value (Pro+)
const ev = await sharp.ev.list({ league: 'NBA' });

// Stream real-time Pinnacle line movements via SSE
const stream = sharp.stream.odds({
  league: 'NBA',
  sportsbooks: ['pinnacle'],
});
stream.on('odds:update', (data) => {
  console.log(data.event, data.market, data.odds_american);
});

The response includes American, decimal, and implied probability formats for each market. No-vig fair odds (the true probability estimate from Pinnacle's sharp line) are exposed on Hobby plans and above.

SharpAPI pricing tiers

PlanPriceBooksNo-vig+EV detectionRate limit
Free$0/mo2 (incl. Pinnacle)NoNo12 req/min
Hobby$79/mo5YesNoHigher
Pro$229/mo15YesYesHigh
Sharp$399/mo30+YesYesHighest

SportsGameOdds: Pinnacle odds with REST and WebSocket

SportsGameOdds is a developer-first sports odds API that covers Pinnacle alongside 20+ other sportsbooks via a unified endpoint. Its Pinnacle integration includes pre-game lines, live in-play markets, player props, alternative lines, and period-specific markets. Results and settlement data are also available where scoring is supported (look for the scoringSupported field in the response).

Market types covered

  • Main markets: moneyline (2-way and 3-way), spread/handicap with vig, totals (over/under)
  • Period markets: 1st half, 2nd half, quarters, periods, sets, rounds
  • Player props: points, rebounds, assists (NBA); passing yards, rushing yards, TDs (NFL); goals, shots, assists (Soccer)
  • Alternative lines: alternative spreads and totals at various price points
  • Live in-play: real-time odds during games with the same structure as pre-game

Key features and use cases

FeatureDetail
Data deliveryREST JSON + optional WebSocket push feed
Line movement trackinglastUpdatedAt timestamp on every odds object
Settlement dataFinal scores and results linked to odds IDs via scoringSupported
Sports coverage20+ sports: NFL, NBA, MLB, NHL, Soccer, Tennis, MMA, and more
DocumentationInteractive API docs at sportsgameodds.com/docs with code snippets in multiple languages
Free trialAvailable — set up in under 5 minutes

SharpAPI vs SportsGameOdds: which to use for Pinnacle data

Use caseBest choiceReason
+EV signal generation with pre-built devigSharpAPI (Hobby+)No-vig lines calculated automatically; +EV detection built in on Pro
Raw odds pipeline for proprietary modelSportsGameOddsReturns raw odds across 20+ books; build your own devig logic
Real-time line movement streamingSharpAPI (Pro+, SSE) or SportsGameOdds (WebSocket)Both support push feeds; SharpAPI SSE, SGO WebSocket
Settlement / CLV trackingSportsGameOddsResults linked to odds IDs via scoringSupported field
Budget / free tierSharpAPI freePinnacle + 1 other book, 12 req/min, no credit card
Multi-book arbitrage detectionSportsGameOdds or SharpAPI SharpNeed 20+ books in one call; SGO covers more books broadly

How developers use Pinnacle lines as a sharp reference

The core use case for Pinnacle odds in automated betting is edge detection — comparing Pinnacle's efficient price against soft sportsbooks to find discrepancies.

The workflow:

  1. Fetch Pinnacle odds for an event (via SharpAPI or SportsGameOdds)
  2. Devig to get no-vig fair probability: fair_prob = raw_prob / (sum of all raw_probs)
  3. Convert fair probability to fair odds: fair_odds = 1 / fair_prob
  4. Compare each soft book's offered odds against the fair odds
  5. Any soft book offering better than fair odds = positive EV bet
  6. Edge % = (soft_odds / fair_odds) - 1

SharpAPI automates steps 2–5 on Pro plans. SportsGameOdds delivers the raw data for you to run your own logic.

Pinnacle is also used for Closing Line Value (CLV) measurement. After a market settles, the Pinnacle closing line is the most accurate available benchmark for whether you bet at the right price. Consistently positive CLV over hundreds of bets — measured against Pinnacle's final line — is the strongest indicator of genuine edge in your betting system.

Placing bets through Pinnacle via sharp brokers

Since Pinnacle's direct placement API is not publicly available, programmatic execution at Pinnacle prices happens through sharp broker APIs. Three brokers support this:

BrokerReviewAPI typeDeposit minimumGeographic availability
SportMarket ProReview →REST (Mollybet)€5,000+Most of EU, Asia, LatAm
MadMarketReview →REST (Mollybet)€5,000+Most of EU, Asia, LatAm
AsianConnect88Review →RESTVariesGlobal (outside US/UK)

Brokers route your bets through their own accounts at Pinnacle and other Asian sharp books. You get Pinnacle-level pricing without a direct Pinnacle account. The tradeoff: broker margins or per-bet fees, and deposit minimums that make this unsuitable for small bankrolls.

For +EV bets at soft sportsbooks discovered using Pinnacle's sharp reference, execution is manual (open the soft book, place the bet using the direct link from your signal API) or via a managed service like Smartbet.io for venues where they have integration.

Wiring a Pinnacle odds pipeline: step-by-step

  1. Get Pinnacle odds via SharpAPI or SportsGameOdds

    Sign up for SharpAPI (free tier: 12 req/min, Pinnacle as one of 2 included books) or SportsGameOdds (free trial, REST + optional WebSocket). Authenticate with your API key as a header. Both return Pinnacle odds in structured JSON — American, decimal, and implied probability formats included. No scraping, no IP bans, no Pinnacle ToS risk.

  2. Devig to get no-vig fair value

    Pinnacle's margins are 1–3% overround — the lowest of any accessible sportsbook. Remove the residual vig using multiplicative devigging: for a two-way market, no-vig prob = raw implied prob / (sum of all raw implied probs). SharpAPI calculates this automatically on Hobby plans and above. SportsGameOdds returns raw odds; devig yourself or compare directly against soft books for edge detection.

  3. Compare against soft sportsbooks

    Both APIs include odds from 20–30+ other sportsbooks in the same response. Query a single endpoint and compare Pinnacle's no-vig price against each soft book's line. When any soft book's odds exceed the Pinnacle fair value, a +EV opportunity exists. SportsGameOdds supports the lastUpdatedAt timestamp for incremental updates; SharpAPI provides SSE streaming on Pro plans.

  4. Execute via broker API or manually

    Pinnacle's own placement API is not publicly available. To bet at Pinnacle programmatically, use a sharp broker: SportMarket Pro and MadMarket both provide REST APIs that route bets through Pinnacle and the Asian market network. AsianConnect88 is another broker option. For +EV bets at soft books, execute manually using the direct link, or route through a managed service like Smartbet.io.

  5. Track CLV against the Pinnacle closing line

    At market close, query the final Pinnacle line from SportsGameOdds (historical data via the lastUpdatedAt field) or SharpAPI (closing line endpoint on paid plans). CLV = (your bet odds / Pinnacle closing odds) - 1. Consistently positive CLV over 500+ bets confirms genuine edge. This is the only statistically rigorous proof that your betting system has real edge — not just short-term variance.

Code sample: SharpAPI + SportsGameOdds Pinnacle odds

SharpAPI (TypeScript/JavaScript SDK):

import { SharpAPI } from '@sharpapi/client';
// npm install @sharpapi/client

const sharp = new SharpAPI({ apiKey: process.env.SHARPAPI_KEY! });

async function getPinnacleEV(league: string) {
  // Fetch +EV opportunities vs Pinnacle fair value (Pro plan required)
  const evOpps = await sharp.ev.list({ league });
  for (const opp of evOpps.data) {
    console.log(
      `${opp.event} | ${opp.market} | ${opp.sportsbook} @ ${opp.odds_american}`,
      `| edge: ${(opp.ev_percent * 100).toFixed(1)}%`,
    );
  }
}

getPinnacleEV('NBA');

SportsGameOdds (REST, Python):

import os, requests

SGO_KEY = os.environ["SGO_API_KEY"]
BASE    = "https://sportsgameodds.com/api/v1"
HEADERS = {"X-Api-Key": SGO_KEY}

def get_pinnacle_odds(sport: str = "NFL", market: str = "moneyline"):
    """Fetch current Pinnacle odds for a sport + market type."""
    r = requests.get(
        f"{BASE}/odds",
        headers=HEADERS,
        params={
            "sportsbooks": "pinnacle",
            "sport":        sport,
            "market":       market,
        },
        timeout=10,
    )
    r.raise_for_status()
    return r.json()

def devig_two_way(odds_home: float, odds_away: float) -> tuple[float, float]:
    """Multiplicative devig for a 2-way market. Returns (fair_home, fair_away)."""
    p_home = 1 / odds_home
    p_away = 1 / odds_away
    total  = p_home + p_away
    return p_home / total, p_away / total

if __name__ == "__main__":
    data = get_pinnacle_odds("NFL", "moneyline")
    for event in data.get("events", []):
        home_odds = event["odds"]["home"]["decimal"]
        away_odds = event["odds"]["away"]["decimal"]
        fair_home, fair_away = devig_two_way(home_odds, away_odds)
        print(f"{event['name']}: fair home={fair_home:.3f} fair away={fair_away:.3f}")
        # Use fair_home / fair_away to detect +EV at soft books

Pinnacle API Frequently Asked Questions

Does Pinnacle have a public API?

No. Pinnacle does not offer a public developer API for odds data or bet placement. Their odds are available on their website and app only. To access Pinnacle odds via API, use SharpAPI (which aggregates Pinnacle odds via proprietary data pipelines) or SportsGameOdds (which provides Pinnacle odds via REST and optional WebSocket). Both are fully compliant with Pinnacle's terms of service.

What is SharpAPI and how does it access Pinnacle?

SharpAPI is a sports odds API that aggregates real-time odds from Pinnacle and 30+ other sportsbooks. It uses proprietary data infrastructure to collect and normalise Pinnacle lines without scraping, serving them via REST and SSE streaming. The free tier includes 12 requests per minute with Pinnacle as one of your 2 included books. Paid plans start at $79/month (Hobby, 5 books) and include no-vig fair value calculations and +EV detection against Pinnacle's sharp lines.

What is SportsGameOdds and what Pinnacle data does it provide?

SportsGameOdds is a developer-focused sports odds API covering 20+ sports and dozens of sportsbooks including Pinnacle. It provides moneylines, spreads, totals, alternative lines, player props, and period-specific markets for Pinnacle. Data is delivered via REST JSON with an optional WebSocket push feed. The API includes a lastUpdatedAt timestamp field for incremental polling and supports results/settlement data where scoring is supported.

How do I place bets at Pinnacle automatically?

Pinnacle's direct bet placement API is not available to the public. The standard route is a sharp broker: SportMarket Pro and MadMarket both provide documented REST APIs that route bets to Pinnacle (and other Asian sharp books) through their broker relationship. AsianConnect88 is a third option. All three require deposit minimums (typically €5,000+) and are available to non-US, non-UK residents. For US and UK users, the broker option is not available — use Betfair Exchange or Kalshi for automation-eligible execution.

Why is Pinnacle used as a sharp reference benchmark?

Pinnacle accepts the highest limits in the industry, never bans winning bettors, and prices markets with 1–3% overround — the tightest margins available. These characteristics mean Pinnacle's lines reflect sharp money and are shaped by the most sophisticated bettors in the world. When a soft book's line diverges from Pinnacle's devigged price, that divergence is genuine edge. All major +EV signal tools (BetBurger, OddsJam, RebelBetting) use Pinnacle as their primary sharp reference.

What is the difference between SharpAPI and SportsGameOdds for Pinnacle data?

SharpAPI focuses on the analytics layer: no-vig fair value is pre-calculated, +EV detection is built-in on Pro plans, and SSE streaming delivers line movements in real time. It positions itself as the end-to-end solution for +EV builders. SportsGameOdds is a more comprehensive raw odds API covering a broader sportsbook list with REST + optional WebSocket and full results/settlement data. For pure +EV signal generation, SharpAPI's pre-calculated devig is convenient. For building your own model or needing raw odds alongside settlement data, SportsGameOdds is more flexible.

Can I use Pinnacle odds for CLV tracking?

Yes — Pinnacle closing lines are the industry standard for CLV calculation because they are the most efficient public prices at market close. Both SharpAPI and SportsGameOdds provide historical odds data that you can use to retrieve the closing Pinnacle line for any market. SharpAPI includes a dedicated closing line endpoint on paid plans. SportsGameOdds exposes the lastUpdatedAt timestamp which, combined with historical querying, lets you reconstruct the closing line.

Which countries can access Pinnacle and use its lines?

Accessing Pinnacle's public website and odds (not their restricted personal account features) is generally possible globally. However, opening a direct Pinnacle account is restricted in the US, UK, France, Australia, Hong Kong, and several EU jurisdictions. Using SharpAPI or SportsGameOdds to access Pinnacle odds data has no geographic restrictions — these are data APIs, not gambling services. For execution, sharp brokers (SportMarket, MadMarket, AsianConnect88) are available in most jurisdictions outside the US and UK.

SportsBetEdge Editorial Team
Written & Reviewed By

SportsBetEdge Editorial Team

Independent Analysis Team
Last verified: Wed Jun 10 2026 12:00 AM GMT (UTC)

SportsBetEdge is an independent research platform. Our team evaluates sports betting tools through feature analysis, vendor demos, free trial assessments, and aggregated user sentiment from public communities (Reddit, Trustpilot, Discord, betting forums). We do not operate any of the tools we review.

Expertise & Trust Signals

  • Independent analysis platform with no operator affiliations
  • 50+ sports betting platforms evaluated
  • 14,000+ user reports aggregated from public communities
  • Verified pricing and feature data across all current vendors
  • Quarterly content refresh on all reviews
  • Affiliate disclosure on every page