Skip to main content

AccountDto

Represents a VALORANT account with player identification information.
puuid
str
required
The player’s unique identifier (PUUID)
gameName
str | None
The player’s in-game name (part of Riot ID)
tagLine
str | None
The player’s tag line (part of Riot ID, e.g., #NA1)

Example

account = await client.GET_getByPuuid("player-puuid")
print(f"Player: {account.gameName}#{account.tagLine}")
print(f"PUUID: {account.puuid}")

ActiveShardDto

Represents the active shard (region) for a player in VALORANT.
puuid
str
required
The player’s unique identifier
game
str
required
The game identifier (always “val” for VALORANT)
activeShard
str
required
The player’s currently active shard/region (e.g., “na”, “eu”, “ap”)

Example

shard = await client.GET_getActiveShard("player-puuid")
print(f"Active region: {shard.activeShard}")

Build docs developers (and LLMs) love