Cricket Api Version 3 is release in beta

Ranking Data API V2

Ranking Men

get

Endpoint Description

This endpoint retrieves the current rankings of men's cricket players across different formats, including One Day Internationals (ODI), Test matches, and T20 matches. The rankings are categorized into all-rounders, batsmen, and bowlers, providing a comprehensive overview of player performance.

Request Format

  • Method: GET

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

  • Request Body: None

Response Structure

The response is a JSON object containing the rankings for men's cricket players, structured as follows:

  • ODI:

    • men:

      • allrounder: Contains details about all-rounder rankings.

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

        • gender: Gender of the players (always "male" for this endpoint).

        • rank: An array of ranking objects, each representing a player.

          • playerName: Name of the player.

          • playerID: Unique identifier for the player.

          • position: Ranking position of the player.

          • Points: Points scored by the player.

          • teamID: Unique identifier for the team.

          • teamName: Name of the team.

      • bat: Similar structure as all-rounder, but for batsmen.

      • bowl: Similar structure as all-rounder, but for bowlers.

  • Test: Same structure as ODI, but for Test match rankings.

  • T20: Same structure as ODI, but for T20 match rankings.

This endpoint provides a comprehensive and structured view of the rankings of men's cricket players, allowing users to access detailed performance metrics across different formats.

Authorizations
Header parameters
x-api-keystringOptionalExample: {API_KEY}
Responses
200
OK
application/json
Responseobject
get
GET /cricket/api/v2/ranking/men HTTP/1.1
Host: apiv3.sportsapi360.com
Authorization: x-api-key YOUR_SECRET_TOKEN
Accept: */*
200

OK

{
  "ODI": {
    "men": {
      "allrounder": {
        "matchType": "ODI",
        "gender": "m",
        "rank": [
          {
            "playerName": "Azmatullah Omarzai",
            "playerID": "67516",
            "position": 1,
            "Points": "296",
            "teamID": "1188",
            "teamName": "Afghanistan"
          },
          {
            "playerName": "Mohammad Nabi",
            "playerID": "7797",
            "position": 1,
            "Points": "292",
            "teamID": "1188",
            "teamName": "Afghanistan"
          },
          {
            "playerName": "Sikandar Raza",
            "playerID": "25422",
            "position": 1,
            "Points": "290",
            "teamID": "10",
            "teamName": "Zimbabwe"
          },
          {
            "playerName": "Mehidy Hasan Miraz",
            "playerID": "63875",
            "position": 1,
            "Points": "248",
            "teamID": "2",
            "teamName": "Bangladesh"
          },
          {
            "playerName": "Michael Bracewell",
            "playerID": "62325",
            "position": 1,
            "Points": "246",
            "teamID": "5",
            "teamName": "New Zealand"
          },
          {
            "playerName": "Brandon McMullen",
            "playerID": "97960",
            "position": 1,
            "Points": "243",
            "teamID": "16",
            "teamName": "Scotland"
          },
          {
            "playerName": "Mitchell Santner",
            "playerID": "57903",
            "position": 1,
            "Points": "238",
            "teamID": "5",
            "teamName": "New Zealand"
          },
          {
            "playerName": "Rashid Khan",
            "playerID": "65748",
            "position": 1,
            "Points": "238",
            "teamID": "1188",
            "teamName": "Afghanistan"
          },
          {
            "playerName": "Glenn Maxwell",
            "playerID": "10085",
            "position": 1,
            "Points": "222",
            "teamID": "1",
            "teamName": "Australia"
          },
          {
            "playerName": "Ravindra Jadeja",
            "playerID": "3850",
            "position": 1,
            "Points": "220",
            "teamID": "4",
            "teamName": "India"
          }
        ]
      },
      "bat": {
        "matchType": "ODI",
        "gender": "m",
        "rank": [
          {
            "playerName": "Shubman Gill",
            "playerID": "66818",
            "position": 1,
            "Points": "784",
            "teamID": "4",
            "teamName": "India"
          },
          {
            "playerName": "Babar Azam",
            "playerID": "59429",
            "position": 1,
            "Points": "766",
            "teamID": "6",
            "teamName": "Pakistan"
          },
          {
            "playerName": "Rohit Sharma",
            "playerID": "3852",
            "position": 1,
            "Points": "756",
            "teamID": "4",
            "teamName": "India"
          },
          {
            "playerName": "Virat Kohli",
            "playerID": "3993",
            "position": 1,
            "Points": "736",
            "teamID": "4",
            "teamName": "India"
          },
          {
            "playerName": "Daryl Mitchell",
            "playerID": "57444",
            "position": 1,
            "Points": "720",
            "teamID": "5",
            "teamName": "New Zealand"
          },
          {
            "playerName": "Harry Tector",
            "playerID": "66085",
            "position": 1,
            "Points": "708",
            "teamID": "13",
            "teamName": "Ireland"
          },
          {
            "playerName": "Shreyas Iyer",
            "playerID": "63961",
            "position": 1,
            "Points": "704",
            "teamID": "4",
            "teamName": "India"
          },
          {
            "playerName": "Charith Asalanka",
            "playerID": "65038",
            "position": 1,
            "Points": "694",
            "teamID": "8",
            "teamName": "Sri Lanka"
          },
          {
            "playerName": "Ibrahim Zadran",
            "playerID": "67519",
            "position": 1,
            "Points": "676",
            "teamID": "1188",
            "teamName": "Afghanistan"
          },
          {
            "playerName": "Shai Hope",
            "playerID": "63797",
            "position": 1,
            "Points": "660",
            "teamID": "9",
            "teamName": "West Indies"
          }
        ]
      },
      "bowl": {
        "matchType": "ODI",
        "gender": "m",
        "rank": [
          {
            "playerName": "Maheesh Theekshana",
            "playerID": "69274",
            "position": 1,
            "Points": "680",
            "teamID": "8",
            "teamName": "Sri Lanka"
          },
          {
            "playerName": "Kuldeep Yadav",
            "playerID": "63187",
            "position": 1,
            "Points": "650",
            "teamID": "4",
            "teamName": "India"
          },
          {
            "playerName": "Keshav Maharaj",
            "playerID": "48607",
            "position": 1,
            "Points": "648",
            "teamID": "7",
            "teamName": "South Africa"
          },
          {
            "playerName": "Bernard Scholtz",
            "playerID": "59032",
            "position": 1,
            "Points": "644",
            "teamID": "20",
            "teamName": "Namibia"
          },
          {
            "playerName": "Rashid Khan",
            "playerID": "65748",
            "position": 1,
            "Points": "640",
            "teamID": "1188",
            "teamName": "Afghanistan"
          },
          {
            "playerName": "Mitchell Santner",
            "playerID": "57903",
            "position": 1,
            "Points": "637",
            "teamID": "5",
            "teamName": "New Zealand"
          },
          {
            "playerName": "Matt Henry",
            "playerID": "60544",
            "position": 1,
            "Points": "622",
            "teamID": "5",
            "teamName": "New Zealand"
          },
          {
            "playerName": "Ravindra Jadeja",
            "playerID": "3850",
            "position": 1,
            "Points": "616",
            "teamID": "4",
            "teamName": "India"
          },
          {
            "playerName": "Adam Zampa",
            "playerID": "58913",
            "position": 1,
            "Points": "614",
            "teamID": "1",
            "teamName": "Australia"
          },
          {
            "playerName": "Josh Hazlewood",
            "playerID": "4255",
            "position": 1,
            "Points": "603",
            "teamID": "1",
            "teamName": "Australia"
          }
        ]
      }
    }
  },
  "Test": {
    "men": {
      "allrounder": {
        "matchType": "Test",
        "gender": "m",
        "rank": [
          {
            "playerName": "Ravindra Jadeja",
            "playerID": "3850",
            "position": 1,
            "Points": "400",
            "teamID": "4",
            "teamName": "India"
          },
          {
            "playerName": "Mehidy Hasan Miraz",
            "playerID": "63875",
            "position": 1,
            "Points": "327",
            "teamID": "2",
            "teamName": "Bangladesh"
          },
          {
            "playerName": "Marco Jansen",
            "playerID": "69409",
            "position": 1,
            "Points": "294",
            "teamID": "7",
            "teamName": "South Africa"
          },
          {
            "playerName": "Pat Cummins",
            "playerID": "56964",
            "position": 1,
            "Points": "271",
            "teamID": "1",
            "teamName": "Australia"
          },
          {
            "playerName": "Shakib Al Hasan",
            "playerID": "3782",
            "position": 1,
            "Points": "253",
            "teamID": "2",
            "teamName": "Bangladesh"
          },
          {
            "playerName": "Jason Holder",
            "playerID": "10232",
            "position": 1,
            "Points": "249",
            "teamID": "9",
            "teamName": "West Indies"
          },
          {
            "playerName": "Gus Atkinson",
            "playerID": "69416",
            "position": 1,
            "Points": "246",
            "teamID": "3",
            "teamName": "England"
          },
          {
            "playerName": "Joe Root",
            "playerID": "10129",
            "position": 1,
            "Points": "243",
            "teamID": "3",
            "teamName": "England"
          },
          {
            "playerName": "Ben Stokes",
            "playerID": "10130",
            "position": 1,
            "Points": "241",
            "teamID": "3",
            "teamName": "England"
          },
          {
            "playerName": "Mitchell Santner",
            "playerID": "57903",
            "position": 1,
            "Points": "222",
            "teamID": "5",
            "teamName": "New Zealand"
          }
        ]
      },
      "bat": {
        "matchType": "Test",
        "gender": "m",
        "rank": [
          {
            "playerName": "Joe Root",
            "playerID": "10129",
            "position": 1,
            "Points": "888",
            "teamID": "3",
            "teamName": "England"
          },
          {
            "playerName": "Harry Brook",
            "playerID": "66374",
            "position": 1,
            "Points": "873",
            "teamID": "3",
            "teamName": "England"
          },
          {
            "playerName": "Kane Williamson",
            "playerID": "4330",
            "position": 1,
            "Points": "867",
            "teamID": "5",
            "teamName": "New Zealand"
          },
          {
            "playerName": "Yashasvi Jaiswal",
            "playerID": "69238",
            "position": 1,
            "Points": "847",
            "teamID": "4",
            "teamName": "India"
          },
          {
            "playerName": "Steve Smith",
            "playerID": "4308",
            "position": 1,
            "Points": "823",
            "teamID": "1",
            "teamName": "Australia"
          },
          {
            "playerName": "Temba Bavuma",
            "playerID": "12492",
            "position": 1,
            "Points": "769",
            "teamID": "7",
            "teamName": "South Africa"
          },
          {
            "playerName": "Kamindu Mendis",
            "playerID": "65034",
            "position": 1,
            "Points": "761",
            "teamID": "8",
            "teamName": "Sri Lanka"
          },
          {
            "playerName": "Travis Head",
            "playerID": "62023",
            "position": 1,
            "Points": "748",
            "teamID": "1",
            "teamName": "Australia"
          },
          {
            "playerName": "Usman Khawaja",
            "playerID": "10048",
            "position": 1,
            "Points": "739",
            "teamID": "1",
            "teamName": "Australia"
          },
          {
            "playerName": "Rishabh Pant",
            "playerID": "65756",
            "position": 1,
            "Points": "739",
            "teamID": "4",
            "teamName": "India"
          }
        ]
      },
      "bowl": {
        "matchType": "Test",
        "gender": "m",
        "rank": [
          {
            "playerName": "Jasprit Bumrah",
            "playerID": "63755",
            "position": 1,
            "Points": "908",
            "teamID": "4",
            "teamName": "India"
          },
          {
            "playerName": "Kagiso Rabada",
            "playerID": "63611",
            "position": 1,
            "Points": "837",
            "teamID": "7",
            "teamName": "South Africa"
          },
          {
            "playerName": "Pat Cummins",
            "playerID": "56964",
            "position": 1,
            "Points": "824",
            "teamID": "1",
            "teamName": "Australia"
          },
          {
            "playerName": "Josh Hazlewood",
            "playerID": "4255",
            "position": 1,
            "Points": "818",
            "teamID": "1",
            "teamName": "Australia"
          },
          {
            "playerName": "Nathan Lyon",
            "playerID": "29679",
            "position": 1,
            "Points": "812",
            "teamID": "1",
            "teamName": "Australia"
          },
          {
            "playerName": "Noman Ali",
            "playerID": "14291",
            "position": 1,
            "Points": "806",
            "teamID": "6",
            "teamName": "Pakistan"
          },
          {
            "playerName": "Marco Jansen",
            "playerID": "69409",
            "position": 1,
            "Points": "785",
            "teamID": "7",
            "teamName": "South Africa"
          },
          {
            "playerName": "Matt Henry",
            "playerID": "60544",
            "position": 1,
            "Points": "782",
            "teamID": "5",
            "teamName": "New Zealand"
          },
          {
            "playerName": "Prabath Jayasuriya",
            "playerID": "62411",
            "position": 1,
            "Points": "751",
            "teamID": "8",
            "teamName": "Sri Lanka"
          },
          {
            "playerName": "Ravindra Jadeja",
            "playerID": "3850",
            "position": 1,
            "Points": "745",
            "teamID": "4",
            "teamName": "India"
          }
        ]
      }
    }
  },
  "T20": {
    "men": {
      "allrounder": {
        "matchType": "T20",
        "gender": "m",
        "rank": [
          {
            "playerName": "Hardik Pandya",
            "playerID": "63751",
            "position": 1,
            "Points": "252",
            "teamID": "4",
            "teamName": "India"
          },
          {
            "playerName": "Marcus Stoinis",
            "playerID": "4311",
            "position": 1,
            "Points": "210",
            "teamID": "1",
            "teamName": "Australia"
          },
          {
            "playerName": "Dipendra Singh Airee",
            "playerID": "66061",
            "position": 1,
            "Points": "209",
            "teamID": "637",
            "teamName": "Nepal"
          },
          {
            "playerName": "Mohammad Nabi",
            "playerID": "7797",
            "position": 1,
            "Points": "207",
            "teamID": "1188",
            "teamName": "Afghanistan"
          },
          {
            "playerName": "Wanindu Hasaranga",
            "playerID": "65027",
            "position": 1,
            "Points": "205",
            "teamID": "8",
            "teamName": "Sri Lanka"
          },
          {
            "playerName": "Liam Livingstone",
            "playerID": "63940",
            "position": 1,
            "Points": "196",
            "teamID": "3",
            "teamName": "England"
          },
          {
            "playerName": "Sikandar Raza",
            "playerID": "25422",
            "position": 1,
            "Points": "194",
            "teamID": "10",
            "teamName": "Zimbabwe"
          },
          {
            "playerName": "Romario Shepherd",
            "playerID": "66243",
            "position": 1,
            "Points": "194",
            "teamID": "9",
            "teamName": "West Indies"
          },
          {
            "playerName": "Roston Chase",
            "playerID": "58071",
            "position": 1,
            "Points": "189",
            "teamID": "9",
            "teamName": "West Indies"
          },
          {
            "playerName": "Gerhard Erasmus",
            "playerID": "57890",
            "position": 1,
            "Points": "164",
            "teamID": "20",
            "teamName": "Namibia"
          }
        ]
      },
      "bat": {
        "matchType": "T20",
        "gender": "m",
        "rank": [
          {
            "playerName": "Travis Head",
            "playerID": "62023",
            "position": 1,
            "Points": "856",
            "teamID": "1",
            "teamName": "Australia"
          },
          {
            "playerName": "Abhishek Sharma",
            "playerID": "66799",
            "position": 1,
            "Points": "829",
            "teamID": "4",
            "teamName": "India"
          },
          {
            "playerName": "Tilak Varma",
            "playerID": "70761",
            "position": 1,
            "Points": "804",
            "teamID": "4",
            "teamName": "India"
          },
          {
            "playerName": "Phil Salt",
            "playerID": "65632",
            "position": 1,
            "Points": "791",
            "teamID": "3",
            "teamName": "England"
          },
          {
            "playerName": "Jos Buttler",
            "playerID": "9782",
            "position": 1,
            "Points": "772",
            "teamID": "3",
            "teamName": "England"
          },
          {
            "playerName": "Suryakumar Yadav",
            "playerID": "11803",
            "position": 1,
            "Points": "739",
            "teamID": "4",
            "teamName": "India"
          },
          {
            "playerName": "Pathum Nissanka",
            "playerID": "66368",
            "position": 1,
            "Points": "714",
            "teamID": "8",
            "teamName": "Sri Lanka"
          },
          {
            "playerName": "Tim Seifert",
            "playerID": "63867",
            "position": 1,
            "Points": "708",
            "teamID": "5",
            "teamName": "New Zealand"
          },
          {
            "playerName": "Kusal Perera",
            "playerID": "11757",
            "position": 1,
            "Points": "676",
            "teamID": "8",
            "teamName": "Sri Lanka"
          },
          {
            "playerName": "Reeza Hendricks",
            "playerID": "4356",
            "position": 1,
            "Points": "676",
            "teamID": "7",
            "teamName": "South Africa"
          }
        ]
      },
      "bowl": {
        "matchType": "T20",
        "gender": "m",
        "rank": [
          {
            "playerName": "Jacob Duffy",
            "playerID": "57672",
            "position": 1,
            "Points": "723",
            "teamID": "5",
            "teamName": "New Zealand"
          },
          {
            "playerName": "Adil Rashid",
            "playerID": "4661",
            "position": 1,
            "Points": "710",
            "teamID": "3",
            "teamName": "England"
          },
          {
            "playerName": "Varun Chakaravarthy",
            "playerID": "67469",
            "position": 1,
            "Points": "706",
            "teamID": "4",
            "teamName": "India"
          },
          {
            "playerName": "Wanindu Hasaranga",
            "playerID": "65027",
            "position": 1,
            "Points": "700",
            "teamID": "8",
            "teamName": "Sri Lanka"
          },
          {
            "playerName": "Akeal Hosein",
            "playerID": "57239",
            "position": 1,
            "Points": "696",
            "teamID": "9",
            "teamName": "West Indies"
          },
          {
            "playerName": "Adam Zampa",
            "playerID": "58913",
            "position": 1,
            "Points": "694",
            "teamID": "1",
            "teamName": "Australia"
          },
          {
            "playerName": "Ravi Bishnoi",
            "playerID": "71288",
            "position": 1,
            "Points": "674",
            "teamID": "4",
            "teamName": "India"
          },
          {
            "playerName": "Maheesh Theekshana",
            "playerID": "69274",
            "position": 1,
            "Points": "666",
            "teamID": "8",
            "teamName": "Sri Lanka"
          },
          {
            "playerName": "Rashid Khan",
            "playerID": "65748",
            "position": 1,
            "Points": "664",
            "teamID": "1188",
            "teamName": "Afghanistan"
          },
          {
            "playerName": "Arshdeep Singh",
            "playerID": "67905",
            "position": 1,
            "Points": "653",
            "teamID": "4",
            "teamName": "India"
          }
        ]
      }
    }
  }
}

Ranking Women

get

Endpoint Description

This API endpoint retrieves the latest women's cricket rankings across different match formats including ODI, Test, and T20.

Request

  • Method: GET

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

Response Format

The response will be in JSON format and contains rankings for women players categorized by match type. The structure of the response includes:

  • ODI

    • women

      • allrounder

        • matchType: (string) Type of match.

        • gender: (string) Gender of the players.

        • rank: (array) List of players with their ranking details.

          • playerName: (string) Name of the player.

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

          • position: (integer) Ranking position of the player.

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

          • teamID: (string) Unique identifier for the team.

          • teamName: (string) Name of the team.

      • bat: Similar structure as allrounder for batting rankings.

      • bowl: Similar structure as allrounder for bowling rankings.

  • Test

    • Structure is similar to ODI, but may contain null values for rankings.

  • T20

    • Structure is similar to ODI, with rankings for allrounders, batsmen, and bowlers.

Notes

  • The response may include null values for certain fields if there are no rankings available.

  • Ensure to handle cases where rankings may not be present for all categories.

Authorizations
Header parameters
x-api-keystringOptionalExample: {API_KEY}
Responses
200
OK
application/json
Responseobject
get
GET /cricket/api/v2/ranking/women HTTP/1.1
Host: apiv3.sportsapi360.com
Authorization: x-api-key YOUR_SECRET_TOKEN
Accept: */*
200

OK

{
  "ODI": {
    "women": {
      "allrounder": {
        "matchType": "ODI",
        "gender": "w",
        "rank": [
          {
            "playerName": "Ash Gardner",
            "playerID": "67023",
            "position": 1,
            "Points": "470",
            "teamID": "1119",
            "teamName": "Australia"
          },
          {
            "playerName": "Hayley Matthews",
            "playerID": "64970",
            "position": 1,
            "Points": "430",
            "teamID": "1135",
            "teamName": "West Indies"
          },
          {
            "playerName": "Marizanne Kapp",
            "playerID": "7759",
            "position": 1,
            "Points": "410",
            "teamID": "1131",
            "teamName": "South Africa"
          },
          {
            "playerName": "Deepti Sharma",
            "playerID": "65146",
            "position": 1,
            "Points": "353",
            "teamID": "1126",
            "teamName": "India"
          },
          {
            "playerName": "Amelia Kerr",
            "playerID": "66632",
            "position": 1,
            "Points": "338",
            "teamID": "1129",
            "teamName": "New Zealand"
          },
          {
            "playerName": "Natalie Sciver-Brunt",
            "playerID": "63998",
            "position": 1,
            "Points": "316",
            "teamID": "1121",
            "teamName": "England"
          },
          {
            "playerName": "Chamari Athapaththu",
            "playerID": "58520",
            "position": 1,
            "Points": "291",
            "teamID": "1133",
            "teamName": "Sri Lanka"
          },
          {
            "playerName": "Annabel Sutherland",
            "playerID": "67045",
            "position": 1,
            "Points": "278",
            "teamID": "1119",
            "teamName": "Australia"
          },
          {
            "playerName": "Sophie Devine",
            "playerID": "62067",
            "position": 1,
            "Points": "259",
            "teamID": "1129",
            "teamName": "New Zealand"
          },
          {
            "playerName": "Alana King",
            "playerID": "67057",
            "position": 1,
            "Points": "234",
            "teamID": "1119",
            "teamName": "Australia"
          }
        ]
      },
      "bat": {
        "matchType": "ODI",
        "gender": "w",
        "rank": [
          {
            "playerName": "Laura Wolvaardt",
            "playerID": "66176",
            "position": 1,
            "Points": "738",
            "teamID": "1131",
            "teamName": "South Africa"
          },
          {
            "playerName": "Smriti Mandhana",
            "playerID": "63992",
            "position": 1,
            "Points": "727",
            "teamID": "1126",
            "teamName": "India"
          },
          {
            "playerName": "Natalie Sciver-Brunt",
            "playerID": "63998",
            "position": 1,
            "Points": "719",
            "teamID": "1121",
            "teamName": "England"
          },
          {
            "playerName": "Amy Jones",
            "playerID": "62569",
            "position": 1,
            "Points": "689",
            "teamID": "1121",
            "teamName": "England"
          },
          {
            "playerName": "Ellyse Perry",
            "playerID": "59956",
            "position": 1,
            "Points": "684",
            "teamID": "1119",
            "teamName": "Australia"
          },
          {
            "playerName": "Hayley Matthews",
            "playerID": "64970",
            "position": 1,
            "Points": "680",
            "teamID": "1135",
            "teamName": "West Indies"
          },
          {
            "playerName": "Alyssa Healy",
            "playerID": "58854",
            "position": 1,
            "Points": "679",
            "teamID": "1119",
            "teamName": "Australia"
          },
          {
            "playerName": "Chamari Athapaththu",
            "playerID": "58520",
            "position": 1,
            "Points": "655",
            "teamID": "1133",
            "teamName": "Sri Lanka"
          },
          {
            "playerName": "Beth Mooney",
            "playerID": "64853",
            "position": 1,
            "Points": "655",
            "teamID": "1119",
            "teamName": "Australia"
          },
          {
            "playerName": "Ash Gardner",
            "playerID": "67023",
            "position": 1,
            "Points": "650",
            "teamID": "1119",
            "teamName": "Australia"
          }
        ]
      },
      "bowl": {
        "matchType": "ODI",
        "gender": "w",
        "rank": [
          {
            "playerName": "Sophie Ecclestone",
            "playerID": "66391",
            "position": 1,
            "Points": "747",
            "teamID": "1121",
            "teamName": "England"
          },
          {
            "playerName": "Ash Gardner",
            "playerID": "67023",
            "position": 1,
            "Points": "724",
            "teamID": "1119",
            "teamName": "Australia"
          },
          {
            "playerName": "Megan Schutt",
            "playerID": "63467",
            "position": 1,
            "Points": "696",
            "teamID": "1119",
            "teamName": "Australia"
          },
          {
            "playerName": "Deepti Sharma",
            "playerID": "65146",
            "position": 1,
            "Points": "672",
            "teamID": "1126",
            "teamName": "India"
          },
          {
            "playerName": "Marizanne Kapp",
            "playerID": "7759",
            "position": 1,
            "Points": "650",
            "teamID": "1131",
            "teamName": "South Africa"
          },
          {
            "playerName": "Kim Garth",
            "playerID": "19948",
            "position": 1,
            "Points": "647",
            "teamID": "1119",
            "teamName": "Australia"
          },
          {
            "playerName": "Alana King",
            "playerID": "67057",
            "position": 1,
            "Points": "642",
            "teamID": "1119",
            "teamName": "Australia"
          },
          {
            "playerName": "Kate Cross",
            "playerID": "64283",
            "position": 1,
            "Points": "638",
            "teamID": "1121",
            "teamName": "England"
          },
          {
            "playerName": "Hayley Matthews",
            "playerID": "64970",
            "position": 1,
            "Points": "633",
            "teamID": "1135",
            "teamName": "West Indies"
          },
          {
            "playerName": "Nahida Akter",
            "playerID": "65721",
            "position": 1,
            "Points": "618",
            "teamID": "1276",
            "teamName": "Bangladesh"
          }
        ]
      }
    }
  },
  "Test": {
    "women": {
      "allrounder": {
        "matchType": null,
        "gender": null,
        "rank": null
      },
      "bat": {
        "matchType": null,
        "gender": null,
        "rank": null
      },
      "bowl": {
        "matchType": null,
        "gender": null,
        "rank": null
      }
    }
  },
  "T20": {
    "women": {
      "allrounder": {
        "matchType": "T20",
        "gender": "w",
        "rank": [
          {
            "playerName": "Hayley Matthews",
            "playerID": "64970",
            "position": 1,
            "Points": "488",
            "teamID": "1135",
            "teamName": "West Indies"
          },
          {
            "playerName": "Amelia Kerr",
            "playerID": "66632",
            "position": 1,
            "Points": "434",
            "teamID": "1129",
            "teamName": "New Zealand"
          },
          {
            "playerName": "Deepti Sharma",
            "playerID": "65146",
            "position": 1,
            "Points": "392",
            "teamID": "1126",
            "teamName": "India"
          },
          {
            "playerName": "Ash Gardner",
            "playerID": "67023",
            "position": 1,
            "Points": "372",
            "teamID": "1119",
            "teamName": "Australia"
          },
          {
            "playerName": "Chamari Athapaththu",
            "playerID": "58520",
            "position": 1,
            "Points": "361",
            "teamID": "1133",
            "teamName": "Sri Lanka"
          },
          {
            "playerName": "Marizanne Kapp",
            "playerID": "7759",
            "position": 1,
            "Points": "278",
            "teamID": "1131",
            "teamName": "South Africa"
          },
          {
            "playerName": "Nida Dar",
            "playerID": "60588",
            "position": 1,
            "Points": "276",
            "teamID": "1130",
            "teamName": "Pakistan"
          },
          {
            "playerName": "Kathryn Bryce",
            "playerID": "69563",
            "position": 1,
            "Points": "243",
            "teamID": "1132",
            "teamName": "Scotland"
          },
          {
            "playerName": "Orla Prendergast",
            "playerID": "69541",
            "position": 1,
            "Points": "243",
            "teamID": "1125",
            "teamName": "Ireland"
          },
          {
            "playerName": "Sophie Ecclestone",
            "playerID": "66391",
            "position": 1,
            "Points": "237",
            "teamID": "1121",
            "teamName": "England"
          }
        ]
      },
      "bat": {
        "matchType": "T20",
        "gender": "w",
        "rank": [
          {
            "playerName": "Beth Mooney",
            "playerID": "64853",
            "position": 1,
            "Points": "794",
            "teamID": "1119",
            "teamName": "Australia"
          },
          {
            "playerName": "Hayley Matthews",
            "playerID": "64970",
            "position": 1,
            "Points": "765",
            "teamID": "1135",
            "teamName": "West Indies"
          },
          {
            "playerName": "Tahlia McGrath",
            "playerID": "66669",
            "position": 1,
            "Points": "757",
            "teamID": "1119",
            "teamName": "Australia"
          },
          {
            "playerName": "Smriti Mandhana",
            "playerID": "63992",
            "position": 1,
            "Points": "753",
            "teamID": "1126",
            "teamName": "India"
          },
          {
            "playerName": "Laura Wolvaardt",
            "playerID": "66176",
            "position": 1,
            "Points": "737",
            "teamID": "1131",
            "teamName": "South Africa"
          },
          {
            "playerName": "Chamari Athapaththu",
            "playerID": "58520",
            "position": 1,
            "Points": "689",
            "teamID": "1133",
            "teamName": "Sri Lanka"
          },
          {
            "playerName": "Suzie Bates",
            "playerID": "61306",
            "position": 1,
            "Points": "671",
            "teamID": "1129",
            "teamName": "New Zealand"
          },
          {
            "playerName": "Tazmin Brits",
            "playerID": "69441",
            "position": 1,
            "Points": "663",
            "teamID": "1131",
            "teamName": "South Africa"
          },
          {
            "playerName": "Natalie Sciver-Brunt",
            "playerID": "63998",
            "position": 1,
            "Points": "643",
            "teamID": "1121",
            "teamName": "England"
          },
          {
            "playerName": "Alyssa Healy",
            "playerID": "58854",
            "position": 1,
            "Points": "639",
            "teamID": "1119",
            "teamName": "Australia"
          }
        ]
      },
      "bowl": {
        "matchType": "T20",
        "gender": "w",
        "rank": [
          {
            "playerName": "Sadia Iqbal",
            "position": 1,
            "Points": "746",
            "teamID": "1130",
            "teamName": "Pakistan"
          },
          {
            "playerName": "Deepti Sharma",
            "position": 1,
            "Points": "737",
            "teamID": "1126",
            "teamName": "India"
          },
          {
            "playerName": "Annabel Sutherland",
            "position": 1,
            "Points": "736",
            "teamID": "1119",
            "teamName": "Australia"
          },
          {
            "playerName": "Sophie Ecclestone",
            "position": 1,
            "Points": "734",
            "teamID": "1121",
            "teamName": "England"
          },
          {
            "playerName": "Renuka Singh Thakur",
            "position": 1,
            "Points": "728",
            "teamID": "1126",
            "teamName": "India"
          },
          {
            "playerName": "Lauren Bell",
            "position": 1,
            "Points": "717",
            "teamID": "1121",
            "teamName": "England"
          },
          {
            "playerName": "Charlie Dean",
            "position": 1,
            "Points": "714",
            "teamID": "1121",
            "teamName": "England"
          },
          {
            "playerName": "Nashra Sandhu",
            "position": 1,
            "Points": "704",
            "teamID": "1130",
            "teamName": "Pakistan"
          },
          {
            "playerName": "Georgia Wareham",
            "position": 1,
            "Points": "704",
            "teamID": "1119",
            "teamName": "Australia"
          },
          {
            "playerName": "Sarah Glenn",
            "position": 1,
            "Points": "695",
            "teamID": "1121",
            "teamName": "England"
          }
        ]
      }
    }
  }
}

Ranking Team

get

Endpoint Description

This API endpoint retrieves the current rankings of cricket teams across different formats (ODI, Test, T20) for both men and women.

Request

  • Method: GET

  • Endpoint: https://apiv3.sportsapi360.com/cricket/api/v2/ranking/team

Response Format

The response will be a JSON object containing the rankings for each format of cricket. The structure of the response is as follows:

  • ODI:

    • men:

      • team:

        • matchType: (string)

        • rank: (array of objects)

          • position: (string)

          • Rating: (string)

          • teamName: (string)

          • teamID: (string)

    • women:

      • team:

        • matchType: (string)

        • rank: (array of objects)

          • position: (string)

          • Rating: (string)

          • teamName: (string)

          • teamID: (string)

  • Test:

    • men:

      • team:

        • matchType: (string)

        • rank: (array of objects)

          • position: (string)

          • Rating: (string)

          • teamName: (string)

          • teamID: (string)

    • women:

      • team:

        • matchType: (null)

        • rank: (null)

  • T20:

    • men:

      • team:

        • matchType: (string)

        • rank: (array of objects)

          • position: (string)

          • Rating: (string)

          • teamName: (string)

          • teamID: (string)

    • women:

      • team:

        • matchType: (string)

        • rank: (array of objects)

          • position: (string)

          • Rating: (string)

          • teamName: (string)

          • teamID: (string)

Notes

  • The matchType indicates the type of match for which the ranking is applicable.

  • The rank array contains the ranking details for each team, including their position, rating, name, and unique identifier.

Authorizations
Header parameters
x-api-keystringOptionalExample: {API_KEY}
Responses
200
OK
application/json
Responseobject
get
GET /cricket/api/v2/ranking/team HTTP/1.1
Host: apiv3.sportsapi360.com
Authorization: x-api-key YOUR_SECRET_TOKEN
Accept: */*
200

OK

{
  "ODI": {
    "men": {
      "team": {
        "matchType": "ODI",
        "rank": [
          {
            "position": "1",
            "Rating": "124",
            "teamName": "India",
            "teamID": "4"
          },
          {
            "position": "1",
            "Rating": "109",
            "teamName": "New Zealand",
            "teamID": "5"
          },
          {
            "position": "1",
            "Rating": "109",
            "teamName": "Australia",
            "teamID": "1"
          },
          {
            "position": "1",
            "Rating": "104",
            "teamName": "Sri Lanka",
            "teamID": "8"
          },
          {
            "position": "1",
            "Rating": "104",
            "teamName": "Pakistan",
            "teamID": "6"
          },
          {
            "position": "1",
            "Rating": "96",
            "teamName": "South Africa",
            "teamID": "7"
          },
          {
            "position": "1",
            "Rating": "91",
            "teamName": "Afghanistan",
            "teamID": "1188"
          },
          {
            "position": "1",
            "Rating": "88",
            "teamName": "England",
            "teamID": "3"
          },
          {
            "position": "1",
            "Rating": "77",
            "teamName": "West Indies",
            "teamID": "9"
          },
          {
            "position": "1",
            "Rating": "76",
            "teamName": "Bangladesh",
            "teamID": "2"
          }
        ]
      }
    },
    "women": {
      "team": {
        "matchType": "ODI",
        "rank": [
          {
            "position": "1",
            "Rating": "167",
            "teamName": "Australia",
            "teamID": "1119"
          },
          {
            "position": "1",
            "Rating": "129",
            "teamName": "England",
            "teamID": "1121"
          },
          {
            "position": "1",
            "Rating": "121",
            "teamName": "India",
            "teamID": "1126"
          },
          {
            "position": "1",
            "Rating": "96",
            "teamName": "New Zealand",
            "teamID": "1129"
          },
          {
            "position": "1",
            "Rating": "86",
            "teamName": "South Africa",
            "teamID": "1131"
          },
          {
            "position": "1",
            "Rating": "82",
            "teamName": "Sri Lanka",
            "teamID": "1133"
          },
          {
            "position": "1",
            "Rating": "79",
            "teamName": "Bangladesh",
            "teamID": "1276"
          },
          {
            "position": "1",
            "Rating": "78",
            "teamName": "Pakistan",
            "teamID": "1130"
          },
          {
            "position": "1",
            "Rating": "73",
            "teamName": "West Indies",
            "teamID": "1135"
          },
          {
            "position": "1",
            "Rating": "50",
            "teamName": "Ireland",
            "teamID": "1125"
          }
        ]
      }
    }
  },
  "Test": {
    "men": {
      "team": {
        "matchType": "Test",
        "rank": [
          {
            "position": "1",
            "Rating": "123",
            "teamName": "Australia",
            "teamID": "1"
          },
          {
            "position": "1",
            "Rating": "114",
            "teamName": "South Africa",
            "teamID": "7"
          },
          {
            "position": "1",
            "Rating": "113",
            "teamName": "England",
            "teamID": "3"
          },
          {
            "position": "1",
            "Rating": "105",
            "teamName": "India",
            "teamID": "4"
          },
          {
            "position": "1",
            "Rating": "95",
            "teamName": "New Zealand",
            "teamID": "5"
          },
          {
            "position": "1",
            "Rating": "87",
            "teamName": "Sri Lanka",
            "teamID": "8"
          },
          {
            "position": "1",
            "Rating": "78",
            "teamName": "Pakistan",
            "teamID": "6"
          },
          {
            "position": "1",
            "Rating": "73",
            "teamName": "West Indies",
            "teamID": "9"
          },
          {
            "position": "1",
            "Rating": "62",
            "teamName": "Bangladesh",
            "teamID": "2"
          },
          {
            "position": "1",
            "Rating": "30",
            "teamName": "Ireland",
            "teamID": "13"
          }
        ]
      }
    },
    "women": {
      "team": {
        "matchType": null,
        "rank": null
      }
    }
  },
  "T20": {
    "men": {
      "team": {
        "matchType": "T20",
        "rank": [
          {
            "position": "1",
            "Rating": "271",
            "teamName": "India",
            "teamID": "4"
          },
          {
            "position": "1",
            "Rating": "262",
            "teamName": "Australia",
            "teamID": "1"
          },
          {
            "position": "1",
            "Rating": "254",
            "teamName": "England",
            "teamID": "3"
          },
          {
            "position": "1",
            "Rating": "249",
            "teamName": "New Zealand",
            "teamID": "5"
          },
          {
            "position": "1",
            "Rating": "246",
            "teamName": "West Indies",
            "teamID": "9"
          },
          {
            "position": "1",
            "Rating": "245",
            "teamName": "South Africa",
            "teamID": "7"
          },
          {
            "position": "1",
            "Rating": "235",
            "teamName": "Sri Lanka",
            "teamID": "8"
          },
          {
            "position": "1",
            "Rating": "229",
            "teamName": "Pakistan",
            "teamID": "6"
          },
          {
            "position": "1",
            "Rating": "223",
            "teamName": "Afghanistan",
            "teamID": "1188"
          },
          {
            "position": "1",
            "Rating": "220",
            "teamName": "Bangladesh",
            "teamID": "2"
          }
        ]
      }
    },
    "women": {
      "team": {
        "matchType": "T20",
        "rank": [
          {
            "position": "1",
            "Rating": "299",
            "teamName": "Australia",
            "teamID": "1119"
          },
          {
            "position": "1",
            "Rating": "280",
            "teamName": "England",
            "teamID": "1121"
          },
          {
            "position": "1",
            "Rating": "260",
            "teamName": "India",
            "teamID": "1126"
          },
          {
            "position": "1",
            "Rating": "253",
            "teamName": "New Zealand",
            "teamID": "1129"
          },
          {
            "position": "1",
            "Rating": "243",
            "teamName": "South Africa",
            "teamID": "1131"
          },
          {
            "position": "1",
            "Rating": "239",
            "teamName": "West Indies",
            "teamID": "1135"
          },
          {
            "position": "1",
            "Rating": "228",
            "teamName": "Sri Lanka",
            "teamID": "1133"
          },
          {
            "position": "1",
            "Rating": "220",
            "teamName": "Pakistan",
            "teamID": "1130"
          },
          {
            "position": "1",
            "Rating": "194",
            "teamName": "Ireland",
            "teamID": "1125"
          },
          {
            "position": "1",
            "Rating": "192",
            "teamName": "Bangladesh",
            "teamID": "1276"
          }
        ]
      }
    }
  }
}