Skip to main content
Player cards are cosmetic profile images that players display in Valorant’s in-game scoreboard and social panels. Each card ships in three image variants — small, wide, and large — making them suitable for different UI layouts. You can retrieve the full collection of player cards or look up a specific card by its UUID.
All requests must include a User-Agent header in the format AppName/Version (+URL). Requests without it will be rejected.

GET /v1/playercards

Returns a list of all player cards.
Pass the language query parameter to receive localized displayName values for your target audience.

Query parameters

language
string
default:"en-US"
BCP 47 locale string for response localization. Example: ko-KR, pt-BR, zh-TW.

Example request

curl --request GET \
  --url "https://astra.teamfortuna.xyz/v1/playercards?language=en-US" \
  --header "User-Agent: MyApp/1.0 (+https://example.com)"

Response

{
  "status": 200,
  "data": [
    {
      "uuid": "cfd8d9e8-4984-21ed-00a6-53916619c68f",
      "displayName": ".SYS Card",
      "isHiddenIfNotOwned": false,
      "themeUuid": null,
      "displayIcon": null,
      "smallArt": "https://valmedia.teamfortuna.xyz/playercards/cfd8d9e8-4984-21ed-00a6-53916619c68f/smallart.png",
      "wideArt": "https://valmedia.teamfortuna.xyz/playercards/cfd8d9e8-4984-21ed-00a6-53916619c68f/wideart.png",
      "largeArt": "https://valmedia.teamfortuna.xyz/playercards/cfd8d9e8-4984-21ed-00a6-53916619c68f/largeart.png",
      "assetPath": "ShooterGame/Content/Personalization/PlayerCards/Ep4_Act3_BP/Grid2/Playercard_Grid2_PrimaryAsset"
    }
  ]
}

Response fields

status
number
required
HTTP status code of the response.
data
object[]
required
Array of player card objects.

GET /v1/playercards/{uuid}

Returns a single player card by its UUID.

Path parameters

uuid
string
required
The UUID of the player card to retrieve.

Query parameters

language
string
default:"en-US"
BCP 47 locale string for response localization.

Example request

curl --request GET \
  --url "https://astra.teamfortuna.xyz/v1/playercards/cfd8d9e8-4984-21ed-00a6-53916619c68f?language=en-US" \
  --header "User-Agent: MyApp/1.0 (+https://example.com)"

Response

{
  "status": 200,
  "data": {
    "uuid": "cfd8d9e8-4984-21ed-00a6-53916619c68f",
    "displayName": ".SYS Card",
    "isHiddenIfNotOwned": false,
    "themeUuid": null,
    "displayIcon": null,
    "smallArt": "https://valmedia.teamfortuna.xyz/playercards/cfd8d9e8-4984-21ed-00a6-53916619c68f/smallart.png",
    "wideArt": "https://valmedia.teamfortuna.xyz/playercards/cfd8d9e8-4984-21ed-00a6-53916619c68f/wideart.png",
    "largeArt": "https://valmedia.teamfortuna.xyz/playercards/cfd8d9e8-4984-21ed-00a6-53916619c68f/largeart.png",
    "assetPath": "ShooterGame/Content/Personalization/PlayerCards/Ep4_Act3_BP/Grid2/Playercard_Grid2_PrimaryAsset"
  }
}