Get Current Season

GET /apex/current

Responses

  • 200

    Successful Response

    Hide response attributes Show response attributes object
    • season object Required
      Hide season attributes Show season attributes object
      • number integer Required
      • name string Required
      • start string Required
      • end string Required
      • split string
    • progress object Required
      Hide progress attributes Show progress attributes object
      • split integer
      • splitProgress string
      • seasonProgress string Required
  • 410

    Not found current season

    Hide response attribute Show response attribute object
    • message string Required
GET /apex/current
curl \
 -X GET https://game-season-api.kasu.dev/apex/current
Response examples (200)
{
  "season": {
    "number": 15,
    "name": "Eclipse",
    "start": "2021-03-09T00:00:00Z",
    "end": "2021-06-08T00:00:00Z",
    "split": "2021-06-08T00:00:00Z"
  },
  "progress": {
    "split": 2,
    "splitProgress": "30.4",
    "seasonProgress": "73.2"
  }
}
Response examples (200)
{
  "season": {
    "number": 15,
    "name": "Eclipse",
    "start": "2021-03-09T00:00:00Z",
    "end": "2021-06-08T00:00:00Z",
    "split": "2021-06-08T00:00:00Z"
  },
  "progress": {
    "split": 2,
    "splitProgress": "30.4",
    "seasonProgress": "73.2"
  }
}
Response examples (410)
{
  "message": "Not found current season"
}
Response examples (410)
{
  "message": "Not found current season"
}