Valorant (non-official)
Community API for Valorant agents, weapons, maps, and assets
A fan-maintained catalog of Valorant in-game content — agents, weapons, skins, maps, sprays — each with artwork and multi-language text. Keyless JSON with wide-open CORS. Not affiliated with Riot; all assets remain Riot's.
GET https://valorant-api.com/v1/agents?isPlayableCharacter=true
{
"status": 200,
"data": [
{
"uuid": "e370fa57-4757-3604-3648-499e1f642d3f",
"displayName": "Gekko",
"developerName": "Aggrobot",
"description": "Gekko the Angeleno leads a tight-knit crew of calamitous creatures.",
"displayIcon": "https://media.valorant-api.com/agents/e370fa57-4757-3604-3648-499e1f642d3f/displayicon.png"
}
]
}curl "https://valorant-api.com/v1/agents?isPlayableCharacter=true"const res = await fetch("https://valorant-api.com/v1/agents?isPlayableCharacter=true");
const data = await res.json();
console.log(data);import requests
res = requests.get("https://valorant-api.com/v1/agents?isPlayableCharacter=true")
print(res.json())/agents?isPlayableCharacter=truePROBEDCommunity API for Valorant agents, weapons, maps, and assets
/agents?limit=5Agents — documented GET route.
/agents?page=1Agents — documented GET route.
We probe a documented GET and expect 2xx JSON — full uptime and health score. Export includes every documented route below.
Stable. No schema drift observed since monitoring began — the response shape has not changed under our checks.
Valorant (non-official): common questions
Is Valorant (non-official) free to use?
Yes — Valorant (non-official) is a free games API. Free tier: Free, no API key. Whether the free tier allows commercial use is unclear — check the provider docs.
Does Valorant (non-official) need an API key?
No — Valorant (non-official) needs no API key or signup. You can call it straight away; rate limits still apply (Unpublished).
Can I call Valorant (non-official) from the browser?
Yes — Valorant (non-official) returns CORS headers over HTTPS, so front-end code can fetch it directly with no backend proxy. Use the fetch snippet on this page, or hit "Run live" to try it now.
Is Valorant (non-official) up right now?
As of our last scheduled check, Valorant (non-official) is unmonitored. We re-probe it every sweep — the status badge and uptime chart above always show the latest.