SoccersAPIDocs
DocsReferenceRounds › Rounds by season

GETRounds by season

Rounds of a season with the current one flagged.

/v2.2/rounds/ with t=byseason

Try it in the interactive referenceAll Rounds operations

Request

GET /v2.2/rounds/?user=USER&token=TOKEN&t=byseason&season_id=406

Parameters

NameRequiredDescriptionExample
season_idyesSeason ID.406

Example response

{
  "data": [
    {
      "id": 1994,
      "name": "1",
      "league_id": 594,
      "season_id": 406,
      "is_current": 1
    },
    {
      "id": 1995,
      "name": "2",
      "league_id": 594,
      "season_id": 406,
      "is_current": 0
    }
  ],
  "meta": {
    "requests_left": 2950,
    "user": "your_username",
    "plan": "Soccer API 50",
    "page": 1,
    "pages": 1,
    "count": 35,
    "total": 35,
    "msg": ""
  }
}