Ranking Data API V3

Ranking Men

get

Get Men's Cricket Rankings

This endpoint retrieves the current rankings for men's cricket across different formats including ODI, Test, and T20. The rankings are categorized based on the match type and provide detailed information about each player's rank.

Request

  • Method: GET

  • URL: https://apiv3.sportsapi360.com/cricket/api/v3/ranking/men

Response

The response contains a structured JSON object with the following key components:

  • ODI: An array of objects representing the One Day International rankings.

  • Test: An array of objects representing the Test match rankings.

  • T20: An array of objects representing the Twenty20 rankings.

Each ranking array includes the following fields:

  • matchType: The type of match (e.g., ODI, Test, T20).

  • gender: The gender category of the ranking (in this case, it will always be male).

  • rankType: The type of ranking (e.g., player, team).

  • updatedAt: The timestamp of the last update to the rankings.

  • rank: An array of player ranking details, where each object includes:

    • position: The player's current rank position.

    • change: The change in rank since the last update.

    • PlayerName: The name of the player.

    • playerID: A unique identifier for the player.

    • CountryId: The unique identifier for the player's country.

    • CountryName: The name of the country.

    • Country: The abbreviated name of the country.

    • teamId: The unique identifier for the team.

    • teamName: The name of the team.

    • Points: The points accumulated by the player.

    • careerbest: The player's best career ranking.

    • rankdate: The date of the current ranking.

Notes

  • Ensure that the base URL is correctly set before making the request.

  • The response may vary based on the latest rankings and updates in the cricket world.

Authorizations
HTTPRequired
Header parameters
x-api-keystringOptionalExample: {API_KEY}
Responses
get
/cricket/api/v3/ranking/men
200

OK

Ranking Women

get

Endpoint Description

This endpoint retrieves the current rankings for women's cricket across different formats, specifically One Day Internationals (ODI) and Twenty20 (T20).

Request

  • Method: GET

  • Endpoint: https://apiv3.sportsapi360.com/cricket/api/v3/ranking/women

Response

The response is a JSON object containing the rankings for women in two formats: ODI and T20. Each format includes the following structure:

  • ODI: An array of objects representing the rankings in One Day Internationals.

  • T20: An array of objects representing the rankings in Twenty20 matches.

Response Format

The response for both formats includes the following fields:

  • matchType: Type of match (string).

  • gender: Gender of the players (string).

  • rankType: Type of ranking (string).

  • updatedAt: Timestamp of the last update (string).

  • rank: An array of player ranking details, where each entry includes:

    • position: The player's rank position (string).

    • change: The change in rank (string).

    • PlayerName: Name of the player (string).

    • playerID: Unique identifier for the player (string).

    • CountryId: Identifier for the country (string).

    • CountryName: Name of the country (string).

    • Country: Country abbreviation (string).

    • teamId: Identifier for the team (string).

    • teamName: Name of the team (string).

    • Points: Points accumulated by the player (string).

    • careerbest: Career best ranking (string).

    • rankdate: Date of the rank (string).

This structured response allows consumers of the API to easily access and utilize the ranking information for women's cricket.

Authorizations
HTTPRequired
Header parameters
x-api-keystringOptionalExample: {API_KEY}
Responses
get
/cricket/api/v3/ranking/women
200

OK

Ranking Men Team

get

Get Men's Cricket Team Rankings

This endpoint retrieves the current rankings of men's cricket teams across different formats: ODI, T20, and Test.

Request

  • Method: GET

  • URL: https://apiv3.sportsapi360.com/cricket/api/v3/ranking/team/men

Response

The response is structured in JSON format and contains the rankings for the following match types:

  • ODI:

    • An array of ranking details for One Day Internationals.

  • T20:

    • An array of ranking details for Twenty20 matches.

  • Test:

    • An array of ranking details for Test matches.

Response Structure

Each match type contains the following fields:

  • matchType: Type of the match (e.g., ODI, T20, Test).

  • gender: Gender of the teams (e.g., male).

  • rankType: Type of ranking.

  • updatedAt: Timestamp of the last update.

  • rank: An array of ranking details for each team, which includes:

    • position: Current rank position of the team.

    • change: Change in rank position.

    • CountryId: Unique identifier for the country.

    • Country: Name of the country.

    • shortname: Abbreviated name of the team.

    • teamId: Unique identifier for the team.

    • teamName: Full name of the team.

    • Matches: Number of matches played.

    • Points: Total points accumulated.

    • Rating: Average rating based on performance.

    • rankdate: Date of the ranking.

Notes

  • Ensure that the base URL is correctly set before making the request.

  • The response may vary based on the latest rankings and updates in the cricket world.

Authorizations
HTTPRequired
Header parameters
x-api-keystringOptionalExample: {API_KEY}
Responses
get
/cricket/api/v3/ranking/team/men
200

OK

Ranking Women Team

get

Endpoint Description

This endpoint retrieves the current rankings of women's cricket teams. It provides information about the teams' positions in various formats, specifically One Day Internationals (ODI) and Twenty20 (T20) matches.

Request

  • Method: GET

  • URL: https://apiv3.sportsapi360.com/cricket/api/v3/ranking/team/women

  • Request Body: No request body is required for this GET request.

Response Fields

  • ODI: An array containing the rankings for One Day Internationals.

    • matchType: Type of the match.

    • gender: Gender category of the ranking.

    • rankType: Type of ranking.

    • updatedAt: Timestamp of the last update.

    • rank: An array of ranking details for each team.

      • position: Current rank position.

      • change: Change in rank position.

      • CountryId: Identifier for the country.

      • Country: Name of the country.

      • shortname: Abbreviated name of the country.

      • teamId: Identifier for the team.

      • teamName: Name of the team.

      • Matches: Number of matches played.

      • Points: Points accumulated.

      • Rating: Rating based on performance.

      • rankdate: Date of the ranking.

  • T20: An array containing the rankings for Twenty20 matches, structured similarly to the ODI rankings.

This endpoint is essential for applications that need to display or utilize the latest rankings of women's cricket teams.

Authorizations
HTTPRequired
Header parameters
x-api-keystringOptionalExample: {API_KEY}
Responses
get
/cricket/api/v3/ranking/team/women
200

OK

Last updated