Series Points Table

Get a complete list of all matches scheduled or played in a specific cricket series using the series ID.

🧾 Get Series Points Table & Team Standings

This API provides the current points table for a specific cricket series, showing each team's performance including matches played, wins, losses, no results, net run rate, and total points. Ideal for leaderboards, tournament dashboards, and analytics.

🚀 How to get Series Points Table

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

POSThttps://cricket.quantaapi.com/api/v1/series/{id}/points-table

Headers

Name
Value

Content-Type

application/json

Authorization

Bearer <token>

Body

Name
Type
Description

name

string

search by name

Response

{
    "status": "success",
    "message": "Series points table fetched successfully.",
    "code": 200,
    "type": "SUCCESS",
    "data": [
        {
            "id": "team_2y4AfosgUQ9EKvsZyELYbaOaI",
            "name": "Royal Challengers Bengaluru",
            "short_name": "RCB",
            "matches": 11,
            "wins": 8,
            "loss": 3,
            "ties": 0,
            "no_result": 0,
            "points": 16
        },
        {
            "id": "team_bEHPle40Up2h22Tu6NfLsNlwI",
            "name": "Gujarat Titans",
            "short_name": "GT",
            "matches": 11,
            "wins": 8,
            "loss": 3,
            "ties": 0,
            "no_result": 0,
            "points": 16
        },
        {
            "id": "team_vDTybeY5sdAaMiS5zkOSCdINq",
            "name": "Punjab Kings",
            "short_name": "PBKS",
            "matches": 11,
            "wins": 7,
            "loss": 3,
            "ties": 0,
            "no_result": 1,
            "points": 15
        },
        {
            "id": "team_ndpwtC34Z2eMiYMUUqp1YR8Xr",
            "name": "Mumbai Indians",
            "short_name": "MI",
            "matches": 12,
            "wins": 7,
            "loss": 5,
            "ties": 0,
            "no_result": 0,
            "points": 14
        },
        {
            "id": "team_4qtJkbZwmLqT2lL75IJet1aKz",
            "name": "Delhi Capitals",
            "short_name": "DC",
            "matches": 10,
            "wins": 6,
            "loss": 4,
            "ties": 0,
            "no_result": 0,
            "points": 12
        },
        {
            "id": "team_juN3PCLJb4elYk9ujBtScuWnO",
            "name": "Kolkata Knight Riders",
            "short_name": "KKR",
            "matches": 12,
            "wins": 5,
            "loss": 6,
            "ties": 0,
            "no_result": 1,
            "points": 11
        },
        {
            "id": "team_a50g75n8tA7kAays8GCO3n23Z",
            "name": "Lucknow Super Giants",
            "short_name": "LSG",
            "matches": 11,
            "wins": 5,
            "loss": 6,
            "ties": 0,
            "no_result": 0,
            "points": 10
        },
        {
            "id": "team_QT0v2EFKtTtehSlYc18FWA4dW",
            "name": "Sunrisers Hyderabad",
            "short_name": "SRH",
            "matches": 10,
            "wins": 3,
            "loss": 7,
            "ties": 0,
            "no_result": 0,
            "points": 6
        },
        {
            "id": "team_KSLxK2JjpmO49wlcD4WChfaTX",
            "name": "Chennai Super Kings",
            "short_name": "CSK",
            "matches": 12,
            "wins": 3,
            "loss": 9,
            "ties": 0,
            "no_result": 0,
            "points": 6
        },
        {
            "id": "team_0R6CtIF4GwMNgnLmK7aYWLHfe",
            "name": "Rajasthan Royals",
            "short_name": "RR",
            "matches": 12,
            "wins": 3,
            "loss": 9,
            "ties": 0,
            "no_result": 0,
            "points": 6
        }
    ],
    "info": {
        "series_id": "series_82eRHl5CZEFaubm2dk2zt492b",
        "timestamp_utc": "2025-05-17 13:56:03",
        "version": "v1.0",
        "credits_used": 4,
        "response_time": 98.92
    }
}

Last updated