Discover/AccessBet API
live

AccessBet APIaccessbet.com

Fetch prematch betting odds from AccessBet across sports, tournaments, and individual matches. 4 endpoints covering sports, leagues, and market selections.

Endpoint health
verified 6d ago
get_match_odds
get_sports
get_tournaments
get_prematch_odds
4/4 passing latest checkself-healing
Endpoints
4
Verified account required
Updated
20d ago

What is the AccessBet API?

The AccessBet API exposes prematch betting odds across sports via 4 endpoints, covering everything from top-level sport listings to per-match market breakdowns. Starting with get_sports, you can enumerate all available sports with match counts, drill into tournaments by sport ID using get_tournaments, and retrieve full market selections — 1X2, Over/Under, Both Teams Score, and more — at the tournament or individual match level.

This call costs10 credits / call— charged only on success
Try it

No input parameters required.

api.parse.bot/scraper/ccca7b9c-f856-4a7d-aa93-3f0257590fe8/<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 GET 'https://api.parse.bot/scraper/ccca7b9c-f856-4a7d-aa93-3f0257590fe8/get_sports' \
  -H 'X-API-Key: $PARSE_API_KEY'
All endpoints · 4 totalmissing one? ·

Fetch all available sports with their IDs, names, and match counts. Returns the full list of sports offered for prematch betting, sorted by display order. Each sport includes the count of categories and tournaments available.

Input

No input parameters required.

Response
{
  "type": "object",
  "fields": {
    "total": "integer",
    "sports": "array of sport objects with id, name, code, order, total_matches, total_categories, total_tournaments"
  },
  "sample": {
    "data": {
      "total": 21,
      "sports": [
        {
          "id": "1",
          "code": "soccer",
          "name": "Football",
          "order": 0,
          "total_matches": 261,
          "total_categories": 22,
          "total_tournaments": 77
        },
        {
          "id": "2",
          "code": "basketball",
          "name": "Basketball",
          "order": 2,
          "total_matches": 17,
          "total_categories": 9,
          "total_tournaments": 10
        }
      ]
    },
    "status": "success"
  }
}

About the AccessBet API

Sports and Tournament Navigation

The get_sports endpoint returns the complete list of sports available for prematch betting on AccessBet, including each sport's id, name, code, display order, total_matches, total_categories, and total_tournaments. No parameters are required. Use the returned id values as input to get_tournaments, which accepts a sport_id string (e.g. '1' for Football, '2' for Basketball, '5' for Tennis) and returns tournaments grouped by category — typically country or region. Each tournament object includes id, name, code, category_id, category_name, and match_count.

Odds at Tournament and Match Level

get_prematch_odds takes a tournament_id (obtained from get_tournaments) and returns every active prematch match in that tournament, each with its full set of betting markets and selections. The response includes sport_name, category_name, tournament_name, total_matches, and a matches array where each entry carries market objects containing selection names and current odds values. Markets cover common types such as 1X2, Over/Under totals, Both Teams Score, and GG/NG.

Single-Match Market Detail

For deeper inspection of one fixture, get_match_odds accepts either a numeric match_id or a match_code string and returns the complete market listing for that match. The response surfaces match_name, start_timestamp, total_markets, tournament_name, sport_name, category_name, and a markets array with each market's type, special value (used for handicap lines and over/under thresholds), and all selections with their current odds. This endpoint is suited for monitoring odds movement on a specific fixture over time.

Reliability & maintenanceVerified

The AccessBet API is a managed, monitored endpoint for accessbet.com — not a raw scraper you maintain. Every endpoint is automatically health-checked on a schedule, and when accessbet.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 accessbet.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
6d ago
Latest check
4/4 endpoints 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
  • Aggregate prematch odds from AccessBet alongside other bookmakers to build an odds comparison tool.
  • Track odds movement on specific matches by repeatedly calling get_match_odds with a known match ID.
  • Identify which tournaments are active for a given sport by querying get_tournaments with a sport ID.
  • Build a sports betting dashboard that groups available markets by category and country using category_name fields.
  • Detect arbitrage opportunities by comparing Over/Under and 1X2 selections across tournaments returned by get_prematch_odds.
  • Populate a betting research feed with upcoming fixture names, start timestamps, and market counts from get_match_odds.
  • Enumerate all AccessBet sports and their match volumes programmatically using get_sports for coverage analysis.
Pricing & limitsSee full pricing →
TierPriceCredits/monthRate limit
Free$0/mo2005 req/min
Hobby$30/mo1,00020 req/min
Developer$100/mo5,000100 req/min
Team$300/mo20,000300 req/min
Company$1,000/mo100,000500 req/min

Each endpoint has a fixed posted price per successful call — most fall between 1 and 10 credits — shown on this API's page before you run it. Exceeding the rate limit returns a 429 response. Authenticate with the X-API-Key header.

Frequently asked questions
Does AccessBet have an official developer API?+
AccessBet does not publicly document or offer a developer API. This Parse API is the structured way to access their prematch odds data programmatically.
What does `get_match_odds` return that `get_prematch_odds` doesn't?+
get_match_odds focuses on a single fixture and returns start_timestamp, total_markets, and match_code alongside the full market list. get_prematch_odds covers all matches in a tournament at once but doesn't include start_timestamp or match_code per match — it's better suited for bulk retrieval, while get_match_odds is better for tracking one fixture in detail.
Does the API cover live in-play betting odds?+
Not currently. All four endpoints are scoped to prematch markets only. You can fork this API on Parse and revise it to add an in-play odds endpoint if that data becomes available from the source.
Can I look up a match by team name rather than a match ID?+
Not directly. The API uses numeric match_id or match_code as identifiers for get_match_odds. To find a match for specific teams, you would first call get_prematch_odds for the relevant tournament and scan the returned matches array for the fixture by name. You can fork this API on Parse and revise it to add a search-by-team-name endpoint.
Are historical or settled match odds available?+
Not currently. The API returns prematch odds for upcoming, unsettled fixtures. Historical odds and results are not part of the response for any endpoint. You can fork this API on Parse and revise it to add historical data coverage if the source exposes it.
Page content last updated . Spec covers 4 endpoints from accessbet.com.
Related APIs in SportsSee all →
oddsportal.com API
Track sports betting odds, matches, and results across multiple sports and leagues in real-time, while viewing team standings and match details to stay informed on upcoming games. Access comprehensive betting data and historical results from OddsPortal to compare odds and analyze sports outcomes.
oddspedia.com API
Find profitable betting opportunities and compare real-time odds across dozens of bookmakers to identify sure bets, value bets, and dropping odds for various sports. Filter matches by sport, league, and region to make informed betting decisions with comprehensive odds comparisons and match information.
oddschecker.com API
Compare betting odds across multiple bookmakers for a wide range of sports, markets, and events on Oddschecker. Retrieve match details, race cards, market outcomes, and bookmaker-by-bookmaker odds to identify the best available prices.
melbet.com API
Place bets with confidence by accessing live and pre-match odds, match information, and league data across multiple sports from Melbet. Stay updated with real-time betting opportunities and comprehensive sports coverage to make informed wagering decisions.
unibet.com API
Access live betting odds, browse sports categories and upcoming matches, and search for specific events across multiple leagues in real-time. Get detailed event information including current odds for thousands of sports matchups to inform your betting decisions.
asianbetsoccer.com API
Track live soccer match scores and upcoming games while monitoring Asian handicap odds from multiple bookmakers to get instant alerts when betting lines match your criteria. Access real-time odds across all available leagues and bookmakers in one place.
melbet.ng API
Access live sports betting odds from Melbet Nigeria across multiple sports and tournaments to compare available markets and make informed betting decisions. Browse available sports, explore tournaments within each sport, and retrieve detailed event odds data in real-time.
surebet.com API
Access real-time arbitrage bets, middle bets, and value bets across multiple bookmakers and sports. Retrieve odds data, profit percentages, and bookmaker metadata to compare betting opportunities programmatically.