HenrikDev API
  • Hello and welcome :D
  • Authentication & Authorization
  • VALORANT
    • General
    • Changes
      • v4.2.0
      • v4.1.0
      • v4.0.1
      • v4.0.0
    • Error Codes
    • API Reference
      • Accounts
      • Content
      • Crosshair
      • Esports
      • Leaderboard
      • Matchlist
      • Match
      • MMR History
      • MMR
      • Premier
      • Queue Status
      • Raw
      • Status
      • Stored Data
      • Store (no daily stores)
      • Version
      • Website
Powered by GitBook
On this page
  1. VALORANT
  2. API Reference

Status

PreviousRawNextStored Data

Last updated 11 months ago

Returns the current VALORANT server status and (if existent) maintenance announcements

get

Server status

Authorizations
Path parameters
regionstring ยท enumRequiredPossible values:
Responses
200
Server status details
application/json
400
Request error by the client (missing query for example)
application/json
403
Forbidden to connect to the Riot API (mainly maintenance reasons on riot side like patches) or to the HenrikDev API itself because of bot prevention for example
application/json
408
Timeout while fetching riot data
application/json
429
Rate limit reached (can be global API limit which affects all users or just you, when the "x-ratelimit-remaining" header is 0 then it's a personal limit)
application/json
503
Riot API seems to be down, API unable to connect
application/json
get
GET /valorant/v1/status/{region} HTTP/1.1
Host: api.henrikdev.xyz
Authorization: YOUR_API_KEY
Accept: */*
{
  "status": 200,
  "region": "eu",
  "data": {
    "maintenances": [
      {
        "created_at": "2022-01-12T22:11:07.530569+00:00",
        "archive_at": "2022-01-13T10:00:00.000000+00:00",
        "updates": [
          {
            "created_at": "2022-01-12T22:11:07.645499+00:00",
            "updated_at": "2022-01-12T23:00:00.000000+00:00",
            "publish": true,
            "id": 6658,
            "translations": [
              {
                "content": "The platform is currently unavailable while we perform emergency maintenance.",
                "locale": "en_US"
              }
            ],
            "publish_locations": [
              "riotclient"
            ],
            "author": "Riot Games"
          }
        ],
        "platforms": [
          "windows"
        ],
        "updated_at": "2022-01-12T23:00:00.000000+00:00",
        "id": 4175,
        "titles": [
          {
            "content": "Emergency Maintenance In Progress",
            "locale": "en_US"
          }
        ],
        "maintenance_status": "in_progress",
        "incident_severity": "warning"
      }
    ],
    "incidents": [
      {
        "created_at": "2022-01-12T22:11:07.530569+00:00",
        "archive_at": "2022-01-13T10:00:00.000000+00:00",
        "updates": [
          {
            "created_at": "2022-01-12T22:11:07.645499+00:00",
            "updated_at": "2022-01-12T23:00:00.000000+00:00",
            "publish": true,
            "id": 6658,
            "translations": [
              {
                "content": "The platform is currently unavailable while we perform emergency maintenance.",
                "locale": "en_US"
              }
            ],
            "publish_locations": [
              "riotclient"
            ],
            "author": "Riot Games"
          }
        ],
        "platforms": [
          "windows"
        ],
        "updated_at": "2022-01-12T23:00:00.000000+00:00",
        "id": 4175,
        "titles": [
          {
            "content": "Emergency Maintenance In Progress",
            "locale": "en_US"
          }
        ],
        "maintenance_status": "in_progress",
        "incident_severity": "warning"
      }
    ]
  }
}