Accounts

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
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
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-06-22T07:17:10.133Z"
  }
}
get

Get account details

Authorizations
Path parameters
puuidstringRequired
Query parameters
forcebooleanOptional

Force data update

Responses
200
Account details
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
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
  }
}

Last updated