Get Season

GET /valorant/{season}

Path parameters

Responses

  • 200

    Successful Response

    Hide response attribute Show response attribute object
  • 404

    Not found season

    Hide response attribute Show response attribute object
GET /valorant/{season}
curl \
 -X GET https://game-season-api.kasu.dev/valorant/{season}
Response examples (200)
{
  "season": {
    "number": 15,
    "name": "Eclipse",
    "start": "2021-03-09T00:00:00Z",
    "end": "2021-06-08T00:00:00Z",
    "acts": [
      {
        "number": 15,
        "start": "2021-03-09T00:00:00Z",
        "end": "2021-06-08T00:00:00Z"
      }
    ]
  }
}
Response examples (404)
{
  "message": "Not found season"
}