Discover/Oddsplug API
live

Oddsplug APIOddsplug.com

Access real-time arbitrage betting opportunities from Oddsplug. Filter by sport and game type. Returns arb percentage, bookmakers, market, and tournament data.

This API takes change requests — .
Endpoint health
verified 1d ago
fetch_arbitrages
1/1 passing latest checkself-healing
Endpoints
1
Updated
23d ago

What is the Oddsplug API?

The Oddsplug API exposes current arbitrage betting opportunities through a single fetch_arbitrages endpoint, returning up to 6 structured fields per opportunity including sport, tournament, market, bookmakers involved, and arbitrage percentage. You can filter results by sport or game type (prematch or live), making it straightforward to scan for mismatches across betting lines programmatically.

Try it
Sport to filter arbitrage opportunities by.
Type of game to filter by.
api.parse.bot/scraper/b18e2890-0c53-4b64-a103-511091e6d8f1/<endpoint>
Ready to send
Fill in the parameters and hit sign in to send to see live response data here.
Call it over HTTPgrab a free API key at signup
curl -X POST 'https://api.parse.bot/scraper/b18e2890-0c53-4b64-a103-511091e6d8f1/fetch_arbitrages' \
  -H 'X-API-Key: $PARSE_API_KEY' \
  -H 'Content-Type: application/json' \
  -d '{
  "sport": "All",
  "game_type": "prematch"
}'
Python SDK · recommended

Typed, relational, agent-ready

A generated client with real types, enums, and the links between objects — the structure a flat JSON response can't carry. Autocompletes in your editor and reads cleanly to coding agents.

  • Fully typed · autocompletes
  • Objects link to objects
  • Typed errors & pagination

Typed Python client. Set up the SDK in your uv project, then pull this API’s typed client:

uv add parse-sdk
uv run parse init
uv run parse add --marketplace oddsplug-com-api

uv run parse add --marketplace pulls a pinned snapshot of this canonical API — it won’t change underneath you. To customize it, subscribe and swap to your own copy.

"""Walkthrough: Oddsplug SDK — fetch arbitrage opportunities across sports."""
from parse_apis.oddsplug_com_api import Oddsplug, Sport, GameType, InvalidInput

client = Oddsplug()

# List all prematch arbitrage opportunities, capped at 5
for arb in client.arbitrages.list(sport=Sport.ALL, game_type=GameType.PREMATCH, limit=5):
    print(arb.sport, arb.market_name, arb.arb_percentage)
    for bm in arb.bookmakers:
        print(f"  {bm.bookmaker}: market={bm.market}, odd={bm.odd}")

# Filter to Football only
football_arb = client.arbitrages.list(sport=Sport.FOOTBALL, limit=1).first()
if football_arb:
    print(f"Football arb: {football_arb.tournament} | {football_arb.market_name} | {football_arb.arb_percentage}%")
    print(f"  Starts: {football_arb.start_at_timestamp}, Created: {football_arb.created_at}")

# Handle invalid input gracefully
try:
    for arb in client.arbitrages.list(sport=Sport.BASKETBALL, game_type=GameType.LIVE, limit=3):
        print(arb.arb_id, arb.market_code)
except InvalidInput as exc:
    print(f"Invalid input: {exc}")

print("exercised: arbitrages.list with sport/game_type filters, bookmaker field access")
All endpoints · 1 totalmissing one? ·

Fetch current arbitrage betting opportunities. Returns a list of arbitrage opportunities showing the market, bookmakers involved, and the arbitrage percentage. Results can be filtered by sport and game type (prematch or live). Some fields (team names, odds) may be obscured for unauthenticated access.

Input
ParamTypeDescription
sportstringSport to filter arbitrage opportunities by.
game_typestringType of game to filter by.
Response
{
  "type": "object",
  "fields": {
    "total": "integer",
    "arbitrages": "array of arbitrage opportunity objects with id, sport, tournament, market, bookmakers, and arb_percentage"
  },
  "sample": {
    "data": {
      "total": 14,
      "arbitrages": [
        {
          "id": "6a3c2e784f873529e80f30bd",
          "sport": "Football",
          "arb_id": "e74fe0795405dd9a30194a9bb10936ce",
          "status": 1,
          "start_at": "xxxx",
          "game_type": "prematch",
          "bookmakers": [
            {
              "odd": "xx",
              "away": "xxxxxx",
              "home": "xxxxxx",
              "icon": "https://oddsplug.com/bucket/bookmakers/msport.png",
              "odds": {
                "ov": "xx",
                "un": "xx"
              },
              "teams": "xxxxxx vs xxxxxx",
              "market": "ov",
              "bookmaker": "MSport"
            },
            {
              "odd": "xx",
              "away": "xxxxxx",
              "home": "xxxxxx",
              "icon": "https://oddsplug.com/bucket/bookmakers/betwgb1.png",
              "odds": {
                "ov": "xx",
                "un": "xx"
              },
              "teams": "xxxxxx vs xxxxxx",
              "market": "un",
              "bookmaker": "BetWGB"
            }
          ],
          "created_at": "2026-06-24T19:22:32.873Z",
          "tournament": "xxxxx > xxxxx",
          "updated_at": "2026-06-24T21:00:08.509Z",
          "market_code": "ou_25",
          "market_name": "Full time over/under 2.5",
          "arb_percentage": "0.09",
          "start_at_timestamp": 1782378000
        }
      ]
    },
    "status": "success"
  }
}

About the Oddsplug API

What the API Returns

The fetch_arbitrages endpoint returns a list of current arbitrage opportunities sourced from Oddsplug. Each item in the arbitrages array includes an id, the sport, the tournament, the specific market (e.g. match winner, over/under), the bookmakers involved in the arbitrage, and the arb_percentage — the margin that makes the opportunity profitable regardless of outcome.

Filtering Results

Two optional input parameters let you narrow results: sport filters to a specific sport (such as football, tennis, or basketball), and game_type filters by whether the event is prematch or live. Both can be omitted to retrieve all current opportunities across all sports and game types. The response also includes a total integer reflecting the count of returned opportunities.

Data Availability Notes

Some fields — specifically team names and individual odds — may be obscured depending on your access level. The arb_percentage, market, tournament, and bookmakers fields are the core data exposed. Freshness of the opportunities reflects Oddsplug's real-time odds feed, so the results are time-sensitive by nature and intended to be polled regularly rather than cached.

Reliability & maintenanceVerified

The Oddsplug API is a managed, monitored endpoint for Oddsplug.com — not a raw scraper you maintain. Every endpoint is automatically health-checked on a schedule, and when Oddsplug.com changes and a check fails, the API is automatically queued for repair and re-verified. It is built to keep working as the site underneath it changes.

This isn't an official Oddsplug.com API — it's an independent, maintained REST wrapper over public data. Where the source has no official API (or only a limited one), Parse gives you a stable contract over a source that never promised one, and keeps it current. Need a new endpoint or field? You can revise it yourself in plain English and the agent rebuilds it against the live site in minutes — contributing the change back to the shared API is free.

Last verified
1d ago
Latest check
1/1 endpoint passing
Maintenance
Monitored & self-healing
Will this API break when the source site changes?+
It's built not to. Every endpoint is health-checked on a schedule with automated test probes. When the source site changes and a check fails, the API is automatically queued for repair and re-verified — that's the self-healing layer. Each API page shows when its endpoints were last verified. And because marketplace APIs are shared, any fix reaches everyone using it.
Is this an official API from the source site?+
No — Parse APIs are independent, managed REST wrappers over publicly available data. That is the point: where a site has no official API (or only a limited one), Parse gives you a maintained, monitored endpoint for that data and keeps it working as the site changes — so you get a stable contract over a source that never promised one.
Can I fix or extend this API myself if I need a new endpoint or field?+
Yes — and you don't have to wait on us. This API was generated by the Parse agent, which stays attached. Describe the change in plain English ("add an endpoint that returns reviews", "fix the price field") in the revise box on the API page or via the revise_api MCP tool, and the agent rebuilds it against the live site in minutes. Contributing the change back to the public API is free.
What happens if I call an endpoint that has an issue?+
Errors are machine-readable: a bad call returns a clean status with the list of available endpoints and a repair hint, so an agent (or you) can recover or trigger a fix instead of failing silently. Confirmed failures feed the automatic repair queue.
Common use cases
  • Alert system that notifies traders when arb_percentage crosses a defined threshold for a target sport
  • Dashboard aggregating live arbitrage opportunities filtered by game_type for in-play betting workflows
  • Automated logging of arbitrage opportunities by tournament and bookmaker pair for historical pattern analysis
  • Filtering prematch arbs across multiple sports to prioritize markets with the highest margins
  • Comparing bookmaker combinations appearing in arbitrages to identify which platforms offer the most frequent mismatches
  • Building a sport-specific arb scanner that polls fetch_arbitrages on a schedule for football or tennis
Pricing & limitsSee full pricing →
TierPriceCredits/monthRate limit
Free$0/mo1005 req/min
Hobby$30/mo1,00020 req/min
Developer$100/mo5,000100 req/min

One credit = one API call regardless of which marketplace API you call. Exceeding the rate limit returns a 429 response. Authenticate with the X-API-Key header.

Frequently asked questions
Does Oddsplug have an official developer API?+
Oddsplug does not publish a documented public developer API. The data is accessible through this Parse API.
What does fetch_arbitrages return and how do I filter it?+
It returns a total count and an array of arbitrage objects. Each object includes id, sport, tournament, market, bookmakers, and arb_percentage. Pass the optional sport parameter to limit results to one sport, and game_type to restrict to 'prematch' or 'live' events. Omitting both returns all current opportunities.
Are individual odds values returned for each bookmaker leg of the arbitrage?+
Not currently for all access levels — team names and per-bookmaker odds may be obscured depending on your plan. The API does return arb_percentage, market, tournament, and the bookmakers involved. You can fork this API on Parse and revise it to expose additional odds detail if the underlying data becomes accessible at your access level.
Does the API cover historical arbitrage opportunities or only current ones?+
The API returns current, real-time opportunities only. There is no historical lookback or time-range filter in fetch_arbitrages. You can fork the API on Parse and revise it to add a data-persistence layer that stores and queries past results.
How time-sensitive is the arbitrage data?+
Arbitrage windows close quickly as bookmakers adjust lines, so the data is designed to reflect current odds. Results should be polled frequently rather than treated as durable. Odds and team name fields may also be partially obscured at lower access tiers.
Page content last updated . Spec covers 1 endpoint from Oddsplug.com.
Related APIs in SportsSee all →
transfermarkt.com API
Search Transfermarkt for football players and retrieve detailed player profiles, transfer histories, market value timelines, performance stats, and club squad/club information.
opendota.com API
Access detailed Dota 2 match statistics, player performance metrics, hero win rates, and professional tournament data to analyze gameplay trends and competitive performance. Search for specific players, explore custom data queries through SQL, and retrieve comprehensive match histories to improve your understanding of the game.
nhl.com API
Access data from nhl.com.
flashscore.com API
Search teams and competitions, pull daily fixtures and live scores, and retrieve match details including events, statistics, and league standings from FlashScore.
racecenter.letour.fr API
Track live Tour de France race updates by accessing real-time rider positions, detailed stage information, and current general classification standings. Monitor how your favorite cyclists are performing throughout each stage and their overall ranking in the competition.
transfermarkt.de API
Access data from transfermarkt.de.
pro-football-reference.com API
Access comprehensive NFL data including season schedules, team standings, player statistics, game boxscores, play-by-play details, and player profiles to research teams, players, and game information. Search for specific players and dive into detailed game analysis with boxscore information and minute-by-minute play data.
fantasypros.com API
Access expert consensus rankings, player projections, average draft position data, injury reports, and the latest player news from FantasyPros. Search by player name or position to retrieve detailed stats, rankings, and expert analysis across all major scoring formats.