Featured Series

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

https://cricket.sportsjupiter.com/v1/featured-series?api_token={api_token}

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:

https://cricket.sportsjupiter.com/v1/fixtures?api_token={api_token}&series_id=4541,4538,4535

Downloads

Last updated