ESPN Cricinfo Scraper avatar

ESPN Cricinfo Scraper

Pricing

from $5.00 / 1,000 results

Go to Apify Store
ESPN Cricinfo Scraper

ESPN Cricinfo Scraper

Unofficial Cricinfo API for live cricket scores, match schedules, scorecards, ball-by-ball updates, player stats, team rankings, and cricket news. Fast JSON endpoints with simple documentation. More details visit here https://rapidapi.com/matepapava123/api/espncricinfo-api

Pricing

from $5.00 / 1,000 results

Rating

0.0

(0)

Developer

Mate Papava

Mate Papava

Maintained by Community

Actor stats

0

Bookmarked

9

Total users

3

Monthly active users

9 days ago

Last modified

Share

ESPN Cricinfo Scraper - Apify Actor

Scrape cricket data from ESPN Cricinfo including live scores, player stats, team info, rankings, news, and more.

Features

  • 24 scraping actions covering all major ESPN Cricinfo data
  • Teams & Players: Get team lists, player details, search players
  • Live Scores & Matches: Real-time scores, detailed scorecards
  • Series & Fixtures: Current, upcoming, and past series
  • Rankings & Stats: ICC rankings, batting/bowling statistics
  • News: Cricket news articles and full story content
  • Team Details: Fixtures, squads, stats, videos, galleries, photos, fan ratings
  • RSS Feeds: Live scores and team news RSS feeds
  • AI Search: ESPN's AI-powered cricket search

Input Parameters

Required

ParameterTypeDescription
actionstringThe scraping action to perform (see Available Actions below)

Action-Specific Parameters

Team Parameters

ParameterTypeDescriptionUsed By
team_idstringTeam ID (e.g., '6' for India)get_team_players, get_team_details, get_team_*
team_slugstringTeam slug (e.g., 'india')get_team_players, get_team_details, get_team_*

Player Parameters

ParameterTypeDescriptionUsed By
player_idstringPlayer IDget_player_details
use_apibooleanUse ESPN API instead of scraping (default: true)get_player_details

Search Parameters

ParameterTypeDescriptionUsed By
querystringSearch query stringsearch_players, ai_search
limitintegerMax results (1-50, default: 5)search_players
tournamentstringTournament filter (e.g., 'menstest')ai_search

Match Parameters

ParameterTypeDescriptionUsed By
match_idstringMatch IDget_match_details

Series Parameters

ParameterTypeDescriptionUsed By
series_idstringSeries IDget_series_details
series_slugstringSeries slugget_series_details
statusstringFilter: 'current', 'upcoming', 'past', 'all'get_series

Format & Ranking Parameters

ParameterTypeDescriptionUsed By
formatstringCricket format: 'test', 'odi', 't20', 't20i'get_live_scores, get_rankings
ranking_typestring'teams', 'batting', 'bowling', 'all-rounder'get_rankings

Statistics Parameters

ParameterTypeDescriptionUsed By
stats_typestring'batting', 'bowling', 'team'get_stats
stats_formatstring'test', 'odi', 't20'get_stats
categorystringSpecific category (e.g., 'most-runs')get_stats

News Parameters

ParameterTypeDescriptionUsed By
story_idstringStory ID or slugget_story_details
pageintegerPage number (default: 1)get_news, get_team_fan_ratings

Fan Ratings Parameters

ParameterTypeDescriptionUsed By
match_classstringFilter: 'tests', 'odis', 't20is', 'all'get_team_fan_ratings

Available Actions

Teams & Players

ActionDescriptionRequired Parameters
get_teamsGet all cricket teams-
get_team_playersGet players for a team by formatteam_id
get_player_detailsGet detailed player info and statsplayer_id
search_playersSearch for playersquery

Matches

ActionDescriptionRequired Parameters
get_live_scoresGet live cricket scores-
get_match_detailsGet full match scorecardmatch_id

Series

ActionDescriptionRequired Parameters
get_seriesGet fixtures/series list-
get_series_detailsGet series detailsseries_id

Rankings & Stats

ActionDescriptionRequired Parameters
get_rankingsGet ICC rankingsranking_type
get_statsGet cricket statistics-

News

ActionDescriptionRequired Parameters
get_newsGet cricket news articles-
get_story_detailsGet full article contentstory_id

Team Details

ActionDescriptionRequired Parameters
get_team_detailsGet team home/overviewteam_id, team_slug
get_team_fixturesGet team match scheduleteam_id, team_slug
get_team_players_listGet current squadteam_id, team_slug
get_team_statsGet team statisticsteam_id, team_slug
get_team_videosGet team videosteam_id, team_slug
get_team_squadsGet historical squadsteam_id, team_slug
get_team_galleriesGet photo galleriesteam_id, team_slug
get_team_photosGet team photosteam_id, team_slug
get_team_fan_ratingsGet player fan ratingsteam_id, team_slug

RSS Feeds

ActionDescriptionRequired Parameters
get_live_scores_rssGet live scores RSS feed-
get_team_news_rssGet team-specific news RSSteam_id
ActionDescriptionRequired Parameters
ai_searchESPN AI-powered searchquery

Example Inputs

Get Live Scores

{
"action": "get_live_scores"
}

Get ICC Team Rankings

{
"action": "get_rankings",
"ranking_type": "teams",
"format": "test"
}

Get Player Details

{
"action": "get_player_details",
"player_id": "253802",
"use_api": true
}

Get Team Details

{
"action": "get_team_details",
"team_id": "6",
"team_slug": "india"
}

Search Players

{
"action": "search_players",
"query": "Virat Kohli",
"limit": 5
}

Get Series List

{
"action": "get_series",
"status": "current"
}
{
"action": "ai_search",
"query": "Who has the most centuries in Test cricket?",
"tournament": "menstest"
}

Output Format

All actions return a consistent output structure:

{
"action": "get_live_scores",
"success": true,
"data": { ... },
"error": null,
"timestamp": "2026-03-18T12:00:00.000Z"
}

On error:

{
"action": "get_live_scores",
"success": false,
"data": null,
"error": "Error message here",
"timestamp": "2026-03-18T12:00:00.000Z"
}

Common Team IDs

TeamIDSlug
Australia1australia
England2england
South Africa3south-africa
West Indies4west-indies
New Zealand5new-zealand
India6india
Pakistan7pakistan
Sri Lanka8sri-lanka
Zimbabwe9zimbabwe
Bangladesh25bangladesh
Ireland29ireland
Afghanistan40afghanistan

Deployment

cd rottentomato/cricketinfo-apify-actor
apify login
apify push

Technical Notes

  • Uses curl-cffi for HTTP requests with anti-bot bypass capabilities
  • Parses both JSON data from __NEXT_DATA__ scripts and HTML fallbacks
  • Handles ESPN Cricinfo's modern Next.js-based architecture
  • Supports pagination for news and fan ratings endpoints