Discover/ESPN Cricinfo API
live

ESPN Cricinfo APIespncricinfo.com

Access live cricket scores, ball-by-ball commentary, full scorecards, match details, series fixtures, and news from ESPN Cricinfo via a single API.

Endpoint health
verified 4d ago
get_live_scores
get_match_commentary
get_global_feed
get_series_fixtures
get_match_scorecard
6/6 passing latest checkself-healing
Endpoints
6
Updated
21d ago

What is the ESPN Cricinfo API?

The ESPN Cricinfo API covers 6 endpoints that expose live match scores, detailed scorecards, ball-by-ball commentary, series fixtures, and a global news feed. Starting with get_live_scores, you get an array of match objects including objectId and series identifiers that chain into get_match_scorecard, get_match_details, and get_match_commentary — giving you a complete picture of any ongoing or recent match.

Try it

No input parameters required.

api.parse.bot/scraper/1d60bec3-9a21-42ea-8ee9-e5ef840ba233/<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/1d60bec3-9a21-42ea-8ee9-e5ef840ba233/get_live_scores' \
  -H 'X-API-Key: $PARSE_API_KEY'
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 espncricinfo-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.

from parse_apis.espn_cricinfo_api import Cricinfo, Match, MatchDetail, FeedItem, FixtureCollection

cricinfo = Cricinfo()

# List all current live/recent matches
for match in cricinfo.matches.list():
    print(match.title, match.state, match.status)
    print(match.series.name)
    for mt in match.teams:
        print(mt.team.name, mt.team.abbreviation, mt.score)

# Get details for a specific match by objectId
m = cricinfo.match(object_id=1513356)
detail = m.details(series_id="1513323")
print(detail.match.title, detail.match.status)

# Get scorecard for a match
sc = m.scorecard(series_id="1513323")
print(sc.match.title, sc.match.state)

# Get ball-by-ball commentary
comm = m.commentary(series_id="1513323")
print(comm.match.title, comm.match.status)

# Browse the news feed
for item in cricinfo.feeds.list(records=5):
    print(item.id, item.title, item.category)
    for container in item.containers:
        print(container.item.title, container.item.type)

# Get series fixtures overview
for collection in cricinfo.fixtures.list():
    print(collection.title)
    for group in collection.series_groups:
        print(group.title)
        for si in group.items:
            print(si.title, si.series.name)
All endpoints · 6 totalmissing one? ·

Get current live and recent cricket matches with scores, team details, and match statuses. Returns match objectIds and series objectIds that can be used with get_match_details, get_match_scorecard, and get_match_commentary endpoints. The response includes all currently running and recently completed matches across all formats and competitions.

Input

No input parameters required.

Response
{
  "type": "object",
  "fields": {
    "matches": "array of match objects with objectId, series, teams, scores, status, ground, and format details"
  },
  "sample": {
    "data": {
      "matches": [
        {
          "slug": "surrey-vs-hampshire-31st-match",
          "state": "LIVE",
          "teams": [
            {
              "team": {
                "name": "Surrey",
                "abbreviation": "SUR"
              },
              "score": "421 & 57/2"
            },
            {
              "team": {
                "name": "Hampshire",
                "abbreviation": "HAM"
              },
              "score": "333"
            }
          ],
          "title": "31st Match",
          "format": "TEST",
          "series": {
            "name": "County Championship Division One",
            "objectId": 1513323
          },
          "status": "Stumps",
          "objectId": 1513356,
          "statusText": "Day 3 - Surrey lead by 145 runs."
        }
      ]
    },
    "status": "success"
  }
}

About the ESPN Cricinfo API

Live Scores and Match Identification

get_live_scores is the entry point for real-time data. It returns an array of match objects, each containing a match objectId, series identifier, team names, current scores, and match status. These identifiers are required inputs for get_match_details, get_match_scorecard, and get_match_commentary, so the live scores endpoint effectively acts as a discovery layer for the rest of the API.

Scorecards and Match Details

get_match_scorecard returns per-innings batting and bowling lines — individual player statistics broken down by innings. get_match_details goes further, adding squad composition via matchPlayers, closeOfPlay notes, ground information, match officials, and head-to-head history. Both endpoints accept match_id and series_id as required parameters, sourced from either get_live_scores or get_series_fixtures.

Commentary and Fixtures

get_match_commentary returns the comments array (ball-by-ball text), overComments, and currentInningNumber, making it useful for applications that need granular in-play narrative. get_series_fixtures returns fixture groups organized into categories such as Current Cricket, Future Series/Tournaments, and Recently Concluded, with seriesGroups containing series items and associated team images alongside objectId values compatible with the match-level endpoints.

News Feed

get_global_feed provides a paginated news and content feed. Inputs include page and records for pagination control. Each result item carries an id, title, category, and a containers field holding article details. The feed's item count can vary at any given time, and the total available count is returned as a top-level total field.

Reliability & maintenanceVerified

The ESPN Cricinfo API is a managed, monitored endpoint for espncricinfo.com — not a raw scraper you maintain. Every endpoint is automatically health-checked on a schedule, and when espncricinfo.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 espncricinfo.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
4d ago
Latest check
6/6 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
  • Display live cricket scores and match statuses in a mobile sports app using get_live_scores
  • Build a scorecard viewer that shows batting and bowling statistics per innings via get_match_scorecard
  • Power a ball-by-ball commentary feed for in-play betting or fan engagement tools using get_match_commentary
  • Aggregate squad and player data for fantasy cricket platforms using matchPlayers from get_match_details
  • Show upcoming and recently concluded series schedules using get_series_fixtures fixture groups
  • Drive a cricket news widget or aggregator by paginating through get_global_feed results
  • Track head-to-head match history between teams using the summary data returned by get_match_details
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 ESPN Cricinfo have an official developer API?+
ESPN Cricinfo does not publish a public developer API. There is no official documentation or sign-up page for developer access to its match or scoring data.
What does `get_match_commentary` return, and how is it structured?+
get_match_commentary returns a content object containing a comments array with ball-by-ball text entries, an overComments field grouping commentary by over, a currentInningNumber field, and innings-level metadata. The match object at the top level provides context like teams, scores, and officials for the same match.
Can I look up historical player career statistics through this API?+
Not currently. The API covers match-level player data (batting and bowling lines per innings, squad lists via matchPlayers) for live and recent matches. Historical career aggregates and player profile pages are not exposed. You can fork this API on Parse and revise it to add an endpoint targeting player career data.
How fresh is the live scores data, and are there any coverage gaps?+
get_live_scores reflects current and recent match states as available on ESPN Cricinfo. Coverage depends on which matches ESPN Cricinfo tracks — lower-tier domestic competitions may have limited or delayed data compared to international fixtures and major T20 leagues.
Does the API support filtering matches by format (Test, ODI, T20)?+
get_live_scores and get_series_fixtures do not expose a format filter parameter — they return all available matches and fixture groups. Format information may appear within individual match objects in the response. You can fork this API on Parse and revise the endpoint to add server-side filtering by match format.
Page content last updated . Spec covers 6 endpoints from espncricinfo.com.
Related APIs in SportsSee all →
cricbuzz.com API
Get real-time cricket scores, detailed match scorecards, ball-by-ball commentary, and player profiles all in one place. Stay updated with live match summaries, series information, and the latest cricket news.
crex.com API
Get live cricket scores, detailed scorecards, ball-by-ball commentary, tournament fixtures, ICC rankings, and the latest cricket news in real-time. Access match information across teams, players, and formats with reliable, low-latency data.
espn.com API
Get live scores, schedules, standings, teams, rosters, athlete profiles, game logs, and league news across major sports from ESPN.
livescore.com API
Track live scores and detailed statistics across football, hockey, basketball, tennis, and cricket with the ability to filter by date, sport, and league. Access match summaries, team overviews, standings, fixtures, and results to stay updated on your favorite competitions and teams.
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.
bleacherreport.com API
Access sports news articles, live scores, and detailed game statistics from Bleacher Report across all major leagues including the NBA, NFL, MLB, and NHL. Retrieve full article content, expert analysis, and box-score data for any supported sport and date.
psl.co.za API
Access real-time South African Premier Soccer League data including live scores, fixtures, results, standings, and match details. Search for clubs, news articles, and other PSL information to stay updated on the league.
kooora.com API
Get live football scores, match details, team standings, and player statistics in real-time. Stay updated with the latest football news and competition rankings all in one place.