Aller au contenu
GET /v1/agents

Agents (all, by name, or by role)

Essayez-le en direct

10 appels gratuits par jour — sans inscription, sans clé API. Passe par la passerelle oanor.

En-têtes personnalisés (facultatif)
api.oanor.com/valorant-api

Ça marche. Récupérez une clé API et utilisez-la dans votre projet.

Obtenez une clé API

Extraits de code

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_..."}
)

Exemple de réponse

Une réponse réelle de ce endpoint, capturée lors du dernier contrôle de santé.

{
    "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
}