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

Accounts

PreviousAPI ReferenceNextContent

Last updated 10 months ago

Use v2 for console support

With these endpoints, you can get basic account data like account level, name, tag, puuid and more

get

Get account details

Authorizations
Path parameters
namestringRequired
tagstringRequired
Query parameters
forcebooleanOptional

Force data update

Responses
200
Account 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
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/account/{name}/{tag} HTTP/1.1
Host: api.henrikdev.xyz
Authorization: YOUR_API_KEY
Accept: */*
{
  "status": 1,
  "data": {
    "puuid": "text",
    "region": "text",
    "account_level": 1,
    "name": "text",
    "tag": "text",
    "card": {
      "small": "text",
      "large": "text",
      "wide": "text",
      "id": "text"
    },
    "last_update": "text",
    "last_update_raw": 1
  }
}
get

Get account details

Authorizations
Path parameters
namestringRequired
tagstringRequired
Query parameters
forcebooleanOptional

Force data update

Responses
200
Account 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
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/v2/account/{name}/{tag} HTTP/1.1
Host: api.henrikdev.xyz
Authorization: YOUR_API_KEY
Accept: */*
{
  "status": 1,
  "data": {
    "puuid": "text",
    "region": "text",
    "account_level": 1,
    "name": "text",
    "tag": "text",
    "card": "text",
    "title": "text",
    "platforms": [
      "text"
    ],
    "updated_at": "2025-05-12T02:05:42.268Z"
  }
}
get

Get account details

Authorizations
Path parameters
puuidstringRequired
Query parameters
forcebooleanOptional

Force data update

Responses
200
Account 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
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/by-puuid/account/{puuid} HTTP/1.1
Host: api.henrikdev.xyz
Authorization: YOUR_API_KEY
Accept: */*
{
  "status": 1,
  "data": {
    "puuid": "text",
    "region": "text",
    "account_level": 1,
    "name": "text",
    "tag": "text",
    "card": {
      "small": "text",
      "large": "text",
      "wide": "text",
      "id": "text"
    },
    "last_update": "text",
    "last_update_raw": 1
  }
}
get

Get account details

Authorizations
Path parameters
puuidstringRequired
Query parameters
forcebooleanOptional

Force data update

Responses
200
Account 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
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/v2/by-puuid/account/{puuid} HTTP/1.1
Host: api.henrikdev.xyz
Authorization: YOUR_API_KEY
Accept: */*
{
  "status": 1,
  "data": {
    "puuid": "text",
    "region": "text",
    "account_level": 1,
    "name": "text",
    "tag": "text",
    "card": {
      "small": "text",
      "large": "text",
      "wide": "text",
      "id": "text"
    },
    "last_update": "text",
    "last_update_raw": 1
  }
}
  • GET/valorant/v1/account/{name}/{tag}
  • GET/valorant/v2/account/{name}/{tag}
  • GET/valorant/v1/by-puuid/account/{puuid}
  • GET/valorant/v2/by-puuid/account/{puuid}