Series Team List

Retrieve all participating teams in a specific cricket series using its series ID.

🏏 Get Teams Participating in a Cricket Series

This API allows you to fetch the list of all teams involved in a particular cricket series. It is helpful for displaying team logos, creating match filters, or showing team tabs in your application or dashboard.

🚀 How to get Series Team List

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

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

Headers

Name
Value

Content-Type

application/json

Authorization

Bearer <token>

Body

Name
Type
Description

name

string

search by name

Response

{
    "status": "success",
    "message": "Series teams fetched successfully.",
    "code": 200,
    "type": "SUCCESS",
    "data": [
        {
            "id": "team_vDTybeY5sdAaMiS5zkOSCdINq",
            "name": "Punjab Kings",
            "short_name": "PBKS",
            "has_squad": false
        },
        {
            "id": "team_bEHPle40Up2h22Tu6NfLsNlwI",
            "name": "Gujarat Titans",
            "short_name": "GT",
            "has_squad": false
        },
        {
            "id": "team_a50g75n8tA7kAays8GCO3n23Z",
            "name": "Lucknow Super Giants",
            "short_name": "LSG",
            "has_squad": false
        },
        {
            "id": "team_4qtJkbZwmLqT2lL75IJet1aKz",
            "name": "Delhi Capitals",
            "short_name": "DC",
            "has_squad": false
        },
        {
            "id": "team_0R6CtIF4GwMNgnLmK7aYWLHfe",
            "name": "Rajasthan Royals",
            "short_name": "RR",
            "has_squad": false
        },
        {
            "id": "team_QT0v2EFKtTtehSlYc18FWA4dW",
            "name": "Sunrisers Hyderabad",
            "short_name": "SRH",
            "has_squad": false
        },
        {
            "id": "team_ndpwtC34Z2eMiYMUUqp1YR8Xr",
            "name": "Mumbai Indians",
            "short_name": "MI",
            "has_squad": false
        },
        {
            "id": "team_KSLxK2JjpmO49wlcD4WChfaTX",
            "name": "Chennai Super Kings",
            "short_name": "CSK",
            "has_squad": false
        },
        {
            "id": "team_2y4AfosgUQ9EKvsZyELYbaOaI",
            "name": "Royal Challengers Bengaluru",
            "short_name": "RCB",
            "has_squad": false
        },
        {
            "id": "team_juN3PCLJb4elYk9ujBtScuWnO",
            "name": "Kolkata Knight Riders",
            "short_name": "KKR",
            "has_squad": false
        }
    ],
    "info": {
        "series_id": "series_82eRHl5CZEFaubm2dk2zt492b",
        "timestamp_utc": "2025-05-17 13:55:30",
        "version": "v1.0",
        "credits_used": 2,
        "response_time": 70.21
    }
}

Last updated