Series Details

Fetch detailed information about a specific cricket series using its unique series ID.

🧾 Get Detailed Information for a Cricket Series

This API allows you to retrieve complete details of a specific cricket series, including its name, date range, match count, teams involved, and current status. Ideal for displaying in-depth info when a user selects a particular series.

🚀 How to get Series Details

To get Series Details, make a POST request to the following endpoint:

POSThttps://cricket.quantaapi.com/api/v1/series/{id}/details

Headers

Name
Value

Content-Type

application/json

Authorization

Bearer <token>

Response

{
    "status": "success",
    "message": "Series detail fetched successfully.",
    "code": 200,
    "type": "SUCCESS",
    "data": {
        "id": "series_82eRHl5CZEFaubm2dk2zt492b",
        "name": "Indian Premier League 2025",
        "start_date": "2025-03-22",
        "end_date": "2025-06-03",
        "squads": 10,
        "matches": 75,
        "t20": 75,
        "odi": 0,
        "test": 0,
        "last_update": "2025-05-16"
    },
    "info": {
        "id": "series_82eRHl5CZEFaubm2dk2zt492b",
        "timestamp_utc": "2025-05-17 13:50:45",
        "version": "v1.0",
        "credits_used": 2,
        "response_time": 123.29
    }
}

Last updated