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.
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.
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'
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.
| Param | Type | Description |
|---|---|---|
| sport_id | integer | Restrict to one sport (football is 1, as returned in sport_id of this endpoint). Omitted = all sports. |
{
"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.
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.
Will this API break when the source site changes?+
Is this an official API from the source site?+
Can I fix or extend this API myself if I need a new endpoint or field?+
What happens if I call an endpoint that has an issue?+
- Build a Serie A odds tracker that polls
list_league_matcheseach day to capture 1X2 and over/under line movements. - Construct a matchday dashboard showing possession, shots on target, and cards per team using the
statisticsblock fromget_match_details. - Seed a football database with the full season fixture list and running scores via
list_league_resultsfiltered byround. - Identify which leagues are available for betting on a given day by calling
list_leagueswithsport_id=1. - Alert users when specific markets (e.g. Asian handicap lines) open for a match by monitoring
get_match_detailsmarketsarray. - Cross-reference final scores from
list_league_resultswith pre-match odds fromget_match_detailsto build historical closing-line models.
| Tier | Price | Credits/month | Rate limit |
|---|---|---|---|
| Free | $0/mo | 200 | 5 req/min |
| Hobby | $30/mo | 1,000 | 20 req/min |
| Developer | $100/mo | 5,000 | 100 req/min |
| Team | $300/mo | 20,000 | 300 req/min |
| Company | $1,000/mo | 100,000 | 500 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.
Does eplay24.it offer an official developer API?+
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?+
Are live in-play odds available through this API?+
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.