Accounts
With these endpoints, you can get basic account data like account level, name, tag, puuid and more
Get account details
Force data update
Account details
Request error by the client (missing query for example)
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
The entity was not found (player/match/general data)
Timeout while fetching riot data
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)
Riot API seems to be down, API unable to connect
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 account details
Force data update
Account details
Request error by the client (missing query for example)
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
The entity was not found (player/match/general data)
Timeout while fetching riot data
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)
Riot API seems to be down, API unable to connect
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-08-22T19:43:39.280Z"
}
}
Get account details
Force data update
Account details
Request error by the client (missing query for example)
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
The entity was not found (player/match/general data)
Timeout while fetching riot data
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)
Riot API seems to be down, API unable to connect
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 account details
Force data update
Account details
Request error by the client (missing query for example)
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
The entity was not found (player/match/general data)
Timeout while fetching riot data
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)
Riot API seems to be down, API unable to connect
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
}
}
Last updated