Discover/eplay24 API
live

eplay24 APIeplay24.it ↗

Access eplay24.it pre-match odds (1X2, double chance, over/under), per-match statistics, and full season fixture lists via 4 structured endpoints.

Endpoint health
verified 2h ago
get_match_details
list_leagues
list_league_matches
list_league_results
4/4 passing latest checkself-healing
Endpoints
4
Verified account required
Updated
3h ago

What is the eplay24 API?

The eplay24.it API exposes 4 endpoints covering Italian and international football betting markets, per-match statistics, and season fixture data from eplay24.it. Use list_leagues to enumerate every competition on the pre-match programme, list_league_matches to pull open odds for a chosen league, get_match_details to retrieve every market and match-level statistics for a single match, and list_league_results to fetch the full season schedule with final scores.

This call costs1 credit / call— charged only on success
Try it
Restrict to one sport (football is 1, as returned in sport_id of this endpoint). Omitted = all sports.
→ api.parse.bot/scraper/c0a3aad2-a413-47fb-a557-4240226d6cd7/<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/c0a3aad2-a413-47fb-a557-4240226d6cd7/list_leagues?sport_id=1' \
  -H 'X-API-Key: $PARSE_API_KEY'
All endpoints · 4 totalmissing one? ·

Lists every league/competition currently on the pre-match programme, grouped by sport and country, with the league_id accepted by list_league_matches and list_league_results. One upstream request; the whole programme (a few hundred rows) is returned in one call without pagination. Football is sport_id 1; omit sport_id to get all sports.

Input
ParamTypeDescription
sport_idintegerRestrict to one sport (football is 1, as returned in sport_id of this endpoint). Omitted = all sports.
Response
{
  "type": "object",
  "fields": {
    "total": "integer number of league rows returned",
    "leagues": "array of league rows: league_id (integer key for the other endpoints), league_name, country_id, country_name, sport_id, sport_name, events_count (open events in the league)"
  },
  "sample": {
    "data": {
      "total": 131,
      "leagues": [
        {
          "sport_id": 1,
          "league_id": 33,
          "country_id": 31,
          "sport_name": "Calcio",
          "league_name": "Serie A",
          "country_name": "Italia",
          "events_count": 25
        }
      ]
    },
    "status": "success"
  }
}

About the eplay24 API

League and Match Discovery

list_leagues returns every league currently on the pre-match programme as a flat array of rows, each carrying league_id, league_name, country_name, sport_id, and sport_name. Pass the optional sport_id parameter (football is 1) to restrict results to one sport. The league_id values from this response are the keys accepted by list_league_matches and list_league_results. Serie A has league_id 33. list_league_matches returns the matches currently open for betting in that league — typically one matchday at a time — with headline fields: home_team, away_team, match_time_local (Europe/Rome, ISO 8601), and a pre-populated odds_1x2 object keyed as 1, X, 2, plus a markets array covering double chance, under/over lines, and goal/no goal.

Per-Match Odds and Statistics

get_match_details accepts a match_id (from either list_league_matches or list_league_results) and returns two distinct blocks. The odds block mirrors the structure from list_league_matches but includes every open market with market_id, market_name, handicap, status, and nested outcomes (each with name, odd, and status). The statistics block covers shots (total, on target, off target, blocked), saves, fouls, corners, offsides, yellow and red cards, possession percentage, free kicks, throw-ins, substitutions, and penalties — reported as home/away pairs. Two boolean flags, odds_available and statistics_available, indicate whether each block has live data for the requested match.

Season Fixtures and Results

list_league_results returns the full season schedule from the site's statistics section. For Serie A that is 380 rows, each with match_id, round, kickoff_utc (ISO 8601 UTC), home_score, away_score (null until played), winner (h, a, d, or null), and flags for played/postponed/canceled status. Filter to a single matchday with the round parameter. The season_id and season_name fields identify which statistics season the data belongs to; season_id is null for leagues without statistics coverage.

Reliability & maintenanceVerified

The eplay24 API is a managed, monitored endpoint for eplay24.it — not a raw scraper you maintain. Every endpoint is automatically health-checked on a schedule, and when eplay24.it 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 eplay24.it 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
2h 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
  • Build a Serie A odds tracker that polls list_league_matches each day to capture 1X2 and over/under line movements.
  • Construct a matchday dashboard showing possession, shots on target, and cards per team using the statistics block from get_match_details.
  • Seed a football database with the full season fixture list and running scores via list_league_results filtered by round.
  • Identify which leagues are available for betting on a given day by calling list_leagues with sport_id=1.
  • Alert users when specific markets (e.g. Asian handicap lines) open for a match by monitoring get_match_details markets array.
  • Cross-reference final scores from list_league_results with pre-match odds from get_match_details to build historical closing-line models.
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 eplay24.it offer an official developer API?+
No. eplay24.it does not publish a public developer API or documented data feed. This Parse API is the structured way to access the data the site exposes.
What does `get_match_details` return for a match that has already been played?+
odds_available will be false and the odds block will have no active markets once the match closes. statistics_available will be true if the statistics feed has post-match data, and the statistics block will contain the final shot, card, corner, and possession figures for both teams.
Does `list_league_results` cover historical seasons beyond the current one?+
The endpoint returns data for the current season only. Historical multi-season data is not currently covered. You can fork this API on Parse and revise it to add an endpoint targeting prior seasons if the source exposes them.
Are live in-play odds available through this API?+
The API covers pre-match markets. In-play odds are not currently included — odds_available turns false once a match kicks off. You can fork this API on Parse and revise it to target live-odds data if you need in-play coverage.
How many matches does `list_league_matches` return, and can I request a specific matchday?+
list_league_matches returns whatever matchday the bookmaker currently has open for a given league_id — for Serie A this is typically 10 rows (one full round). There is no round filter on this endpoint; it always reflects the currently priced matchday. To retrieve all rounds of the season with scores, use list_league_results with the round parameter instead.
Page content last updated . Spec covers 4 endpoints from eplay24.it.
Related APIs in SportsSee all →
snai.it API
Get real-time Serie A match information, odds, and top betting opportunities directly from SNAI.it, plus discover live matches and football leagues to inform your betting decisions. Access match details, current odds, and curated top bets all in one place to stay updated on Italian football betting options.
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.
eadriaticleague2.leaguerepublic.com API
Access detailed match results from the eAdriaticLeague FIFA esports league, including full-time and half-time scores broken down by team and player performance for any available round. Browse through all available competition rounds and retrieve complete fixture data to track league standings and player statistics.
predicd.com API
Get real-time football match predictions, live scores, fixtures, and league standings across multiple competitions including Bundesliga. Access detailed match insights, upcoming games, and current league tables to stay informed about football events and predictions.
betpawa.ng API
Access data from betpawa.ng.
interwetten.com API
Access real-time basketball betting odds, matches, and market information from Interwetten across all major leagues including NBA, NCAA, and Euroleague. Browse available leagues, view upcoming matches, and get detailed betting details for 35+ basketball competitions worldwide.
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.
accessbet.com API
Fetch real-time prematch betting odds across multiple sports, tournaments, and individual matches to compare market prices and make informed wagering decisions. Access comprehensive sports listings, tournament details, and detailed odds data all from a single source.