Skip to main content

Match Overs Summary API

Source: https://www.cricketapi.com/v5/docs/match-overs-summary-rest-api Refresh: Every 5 seconds

Overview

Scores of the batsmen on the crease, bowlers' score, the cricket match score and other match-related information, broken down in an over-wise format.

Endpoints

All overs

GET /v5/cricket/{project_key}/match/{match_key}/over-summary/

Paginated (specific over)

GET /v5/cricket/{project_key}/match/{match_key}/over-summary/{page_key}/

Page key format: {innings}_{over_number} — e.g., b_1_11

Headers

rs-token: <access_token>

Sample Request (Node.js)

// All overs
const response = await axios.get(
`https://api.sports.roanuz.com/v5/cricket/${projectKey}/match/${matchKey}/over-summary/`,
{ headers: { 'rs-token': token } }
);

// Specific over page
const pageKey = 'b_1_11';
const response = await axios.get(
`https://api.sports.roanuz.com/v5/cricket/${projectKey}/match/${matchKey}/over-summary/${pageKey}/`,
{ headers: { 'rs-token': token } }
);

Response Structure

Returns over-by-over summary with:

  • Runs scored per over
  • Wickets in each over
  • Current batsmen on crease
  • Current bowler statistics
  • Match score at end of each over

Hannibal Usage

Not currently used. Could be useful for:

  • Over-by-over run rate visualization
  • Momentum tracking for AI analysis
  • Historical over comparison