SoccersAPIDocs
DocsReferenceStages › Stages by season

GETStages by season

Stages of a season, flagged with whether they have standings or a cup draw.

/v2.2/stages/ with t=byseason

Try it in the interactive referenceAll Stages operations

Request

GET /v2.2/stages/?user=USER&token=TOKEN&t=byseason&season_id=2091

Parameters

NameRequiredDescriptionExample
season_idyesSeason ID.2091

Example response

{
  "data": [
    {
      "id": 20,
      "name": "Conference",
      "is_current": 1,
      "has_standings": 1,
      "has_cupdraw": 1
    },
    {
      "id": 6,
      "name": "Group stage",
      "is_current": 0,
      "has_standings": 1,
      "has_cupdraw": 1
    }
  ],
  "meta": {
    "requests_left": 2950,
    "user": "your_username",
    "plan": "Soccer API 50",
    "page": 1,
    "pages": 1,
    "count": 3,
    "total": 3,
    "msg": ""
  }
}