Get Current Season

GET /valorant/current

Responses

  • 200

    Successful Response

    Hide response attributes Show response attributes object
  • 410

    Not found current season

    Hide response attribute Show response attribute object
GET /valorant/current
curl \
 -X GET https://game-season-api.kasu.dev/valorant/current
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"
      }
    ]
  },
  "progress": {
    "act": 2,
    "seasonProgress": "70",
    "actProgress": "89.3"
  }
}
Response examples (410)
{
  "message": "Not found current season"
}