CricketAPI
  • Introduction
  • Leagues
  • Seasons
  • Featured Series
  • Featured Fixtures
  • Fixtures
  • Fixture (Single Fixture Detailed Stats)
  • Commentary (Ball-by-Ball)
  • Livescores
  • Player
  • Team
  • Standings
  • Team Rankings
Powered by GitBook
On this page
  • API Request
  • How to fetch fixtures for specific series?
  • Downloads

Featured Series

PreviousSeasonsNextFeatured Fixtures

Last updated 1 year ago

This API is designed to efficiently deliver a high-traffic series list. Retrieve details about upcoming, ongoing, or completed series.

This API endpoint is useful when used along with the Fixtures endpoint. Please find the examples below:

API Request

API Reponse
{
    "data": [
        {
            "name": "West Indies tour of Australia",
            "code": "WIA",
            "series_id": "4541,4538,4535"
        },
        {
            "name": "Afghanistan tour of Sri Lanka",
            "code": "ASL",
            "series_id": "5306,5309,5312"
        },
        {
            "name": "South Africa tour of New Zealand",
            "code": "SANZ",
            "series_id": "5255"
        },
        {
            "name": "Afghanistan tour of India",
            "code": "AI",
            "series_id": "5051"
        },
        {
            "name": "Big Bash League",
            "code": "BBL",
            "series_id": "4748,4751"
        },
        {
            "name": "Canada Tour Of Nepal",
            "code": "CANNEP",
            "series_id": "5375"
        },
        {
            "name": "CSA T20 Challenge",
            "code": "T20C",
            "series_id": "5243,5246"
        }
    ]
}

How to fetch fixtures for specific series?

In the above API response, the West Indies Tour of Australia contains three series IDs (Test, T20 and ODI). You can simply pass these series IDs in the series_idquery param to fetch all fixtures for a specific series like the below:

Downloads

https://cricket.sportsjupiter.com/v1/featured-series?api_token={api_token}
https://cricket.sportsjupiter.com/v1/fixtures?api_token={api_token}&series_id=4541,4538,4535
519B
featured-series.json