Cricbuzz.Com API
cricbuzz.com
Live cricket scores, match schedules, scorecards, and ball-by-ball commentary from Cricbuzz.
- Actions
- 5
- Category
- Web
- Login
- Not required
- Output
- JSON
Call the Cricbuzz.Com API
Submit a task, then poll the job until it settles. This example runs act_cricbuzz_com_homepage_ssr.
curl -X POST https://api.anakin.io/v1/wire/task \
-H "X-API-Key: $ANAKIN_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"action_id": "act_cricbuzz_com_homepage_ssr",
"params": {
"match_id": "159199",
"match_slug": "nhnts-vs-som-semi-final-1-t20-blast-2026"
}
}'5 actions on cricbuzz.com
Read
Homepage SSR
act_cricbuzz_com_homepage_ssrread1 credit / callFetches the Cricbuzz homepage server-rendered page and returns embedded live match cards, featured series, and navigation highlights from the Next.js RSC payload.
- match_id
- string
- match_slug
- string
Live Matches Listing
act_cricbuzz_com_live_matches_listing_ssrread1 credit / callFetches the live scores listing page and returns match cards grouped by series, including team names, scores, match status, and links for live and upcoming fixtures.
- match_id
- string
- match_slug
- string
Match Commentary SSR
act_cricbuzz_com_match_commentary_ssrread1 credit / callFetches the server-rendered match commentary page and returns the embedded match header, initial commentary state, and team details from the Next.js RSC payload.
- match_id
- string · required
- match_slug
- string · required
Match Scorecard SSR
act_cricbuzz_com_match_scorecard_ssrread1 credit / callFetches the server-rendered scorecard tab page and returns embedded innings scorecard data, match header, and team details from the Next.js RSC payload.
- match_id
- string · required
- match_slug
- string · required
Series Schedule
act_cricbuzz_com_series_schedule_ssrread1 credit / callFetches the series schedule page and returns upcoming and completed match fixtures with dates, venues, teams, and match links for the selected tournament.
- series_id
- string · required
- series_slug
- string · required
- match_id
- string
- match_slug
- string
Cricbuzz.Com API questions
- Is there an API for Cricbuzz.Com?
- Cricbuzz.Com does not offer a public data API for this, but Anakin Wire provides 5 maintained endpoints for cricbuzz.com. You call Anakin's REST API with an action ID and parameters and get structured JSON back; Anakin handles the browser, proxies, anti-bot, and parsing.
- How do I scrape Cricbuzz.Com data?
- POST to https://api.anakin.io/v1/wire/task with your API key, the action ID, and its parameters, then poll GET /v1/wire/jobs/{id} until the job settles. There is nothing to install and no scraper to maintain — when cricbuzz.com changes its markup, Anakin updates the action.
- Do I need a Cricbuzz.Com account?
- No. Every Cricbuzz.Com action listed here runs anonymously — no account and no credentials required.
- What does the Cricbuzz.Com API cost?
- Usage-based credits, charged per call and refunded automatically when a job fails. New accounts start with 300 free credits and no card. See anakin.io/pricing for the current rates.