/v1/agents
Agents (all, by name, or by role)
Probeer het live
10 gratis calls per dag — geen registratie, geen API-key. Loopt via de oanor-gateway.
Het werkt. Haal een API-key op en gebruik hem in je project.
Verkrijg een API-sleutelCodefragmenten
curl "https://api.oanor.com/valorant-api/v1/agents" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/valorant-api/v1/agents", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/valorant-api/v1/agents");
curl_setopt($ch, CURLOPT_HTTPHEADER, ["x-oanor-key: oanor_test_..."]);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
$out = curl_exec($ch);
import requests
requests.get(
"https://api.oanor.com/valorant-api/v1/agents",
headers={"x-oanor-key": "oanor_test_..."}
)
Voorbeeldrespons
Een echte respons van dit endpoint, vastgelegd bij de laatste health check.
{
"data": {
"agent": {
"icon": "https://media.valorant-api.com/agents/add6443a-41bd-e414-f6ad-e58d267f4e95/displayicon.png",
"name": "Jett",
"role": "Duelist",
"uuid": "add6443a-41bd-e414-f6ad-e58d267f4e95",
"portrait": "https://media.valorant-api.com/agents/add6443a-41bd-e414-f6ad-e58d267f4e95/fullportrait.png",
"abilities": [
{
"name": "Updraft",
"slot": "Ability1",
"description": "INSTANTLY propel Jett high into the air."
},
{
"name": "Tailwind",
"slot": "Ability2",
"description": "ACTIVATE to prepare a gust of wind for a limited time. RE-USE the wind to propel Jett in the direction she is moving. If Jett is standing still, she propels forward. Tailwind charge resets every two kills."
},
{
"name": "Cloudburst",
"slot": "Grenade",
"description": "INSTANTLY throw a projectile that expands into a brief vision-blocking cloud on impact with a surface. HOLD the ability key to curve the smoke in the direction of your crosshair."
},
{
"name": "Blade Storm",
"slot": "Ultimate",
"description": "EQUIP a set of highly accurate throwing knives. FIRE to throw a single knife and recharge knives on a kill. ALT FIRE to throw all remaining daggers but does not recharge on a kill."
},
{
"name": "Drift",
"slot": "Passive",
"description": "Holding the jump button while falling allows you to glide through the air."
}
],
"background": "https://media.valorant-api.com/agents/add6443a-41bd-e414-f6ad-e58d267f4e95/background.png",
"description": "Representing her home country of South Korea, Jett's agile and evasive fighting style lets her take risks no one else can. She runs circles around every skirmish, cutting enemies up before they even know what hit them.",
"role_description": "Duelists are self-sufficient fraggers who their team expects, through abilities and skills, to get high frags and seek out engagements first."
}
},
"meta": {
"timestamp": "2026-06-01T00:04:03.280Z",
"request_id": "4925c811-f3af-4fc1-b0f3-0f4d94575091"
},
"status": "ok",
"message": "Agents retrieved",
"success": true
}