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

Esports

PreviousCrosshairNextLeaderboard

Last updated 10 months ago

Here you can find some esports data. Right now only schedule data for the upcoming matches are available

get

Returns esports schedule data

Authorizations
Query parameters
regionstring · enumOptional

region of the game (multiple possible)

Possible values:
leaguestring · enumOptional

league of the game (multiple possible, these also can be highly dynamic if riot announces new tournaments/leagues)

Possible values:
Responses
200
esports schedule data
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
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/esports/schedule HTTP/1.1
Host: api.henrikdev.xyz
Authorization: YOUR_API_KEY
Accept: */*
{
  "status": 1,
  "data": [
    {
      "date": "2023-01-17T20:00:00Z",
      "state": "completed",
      "type": "match",
      "vod": "https://youtu.be/PrQ-LBZ4W-E",
      "league": {
        "name": "Challengers DACH",
        "identifier": "vrl_dach",
        "icon": "https://static.lolesports.com/leagues/1672932144616_DACH_ICON_400_400.png",
        "region": "EMEA"
      },
      "tournament": {
        "name": "challengers_emea_leagues_split_1",
        "season": "2023"
      },
      "match": {
        "id": "109625073196211557",
        "game_type": {
          "type": "playAll",
          "count": 2
        },
        "teams": [
          {
            "name": "Angry Titans",
            "code": "AT",
            "icon": "https://static.lolesports.com/teams/1644488801867_AT_red_icon2x.png",
            "has_won": false,
            "game_wins": 0,
            "record": {
              "wins": 0,
              "losses": 1
            }
          }
        ]
      }
    }
  ]
}