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

Queue Status

PreviousPremierNextRaw

Last updated 10 months ago

Get a list of all available queues and their status

get

Get a list of all available queues and their metadata

Authorizations
Path parameters
regionstring ยท enumRequiredPossible values:
Responses
200
Queue metadata
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
404
The entity was not found (player/match/general data)
application/json
408
Timeout while fetching riot data
application/json
410
Endpoint is deprecated
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
501
API Version not implemented, check the requested endpoint url
application/json
503
Riot API seems to be down, API unable to connect
application/json
get
GET /valorant/v1/queue-status/{region} HTTP/1.1
Host: api.henrikdev.xyz
Authorization: YOUR_API_KEY
Accept: */*
{
  "status": 1,
  "data": [
    {
      "mode": "Competitive",
      "mode_id": "competitive",
      "enabled": true,
      "team_size": 1,
      "number_of_teams": 1,
      "party_size": {
        "max": 1,
        "min": 1,
        "invalid": [
          1
        ],
        "full_party_bypass": true
      },
      "high_skill": {
        "max_party_size": 1,
        "min_tier": 1,
        "max_tier": 1
      },
      "ranked": true,
      "tournament": true,
      "skill_disparity": [
        {
          "tier": 1,
          "name": "Unrated",
          "max_tier": {
            "id": 1,
            "name": "Unrated"
          }
        }
      ],
      "required_account_level": 1,
      "game_rules": {
        "overtime_win_by_two": true,
        "allow_lenient_surrender": true,
        "allow_drop_out": true,
        "assign_random_agents": true,
        "skip_pregame": true,
        "allow_overtime_draw_vote": true,
        "overtime_win_by_two_capped": true,
        "premier_mode": true
      },
      "platforms": [
        "pc"
      ],
      "maps": [
        {
          "map": {
            "id": "123e4567-e89b-12d3-a456-426614174000",
            "name": "Ascent"
          },
          "enabled": true
        }
      ]
    }
  ]
}