Aller au contenu
GET /v1/meta

Usage notes

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/meta" \
  -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/valorant-api/v1/meta", {
  headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/valorant-api/v1/meta");
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/meta",
    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": {
        "note": "VALORANT game content. /v1/agents (all playable agents; ?name=Jett for one with abilities & lore; ?role=Duelist|Initiator|Controller|Sentinel to filter); /v1/maps (?name=Bind for one — callouts, coordinates, splash); /v1/weapons (?name=Vandal for one with its skins; ?category=Rifle to filter — cost, fire rate, magazine, head/body/leg damage); /v1/tiers (current competitive ranks Iron→Radiant with colors); /v1/gamemodes (playable modes). Game data from valorant-api.com. Not affiliated with Riot Games.",
        "source": "valorant-api.com (community VALORANT game-data API)",
        "endpoints": [
            "/v1/agents",
            "/v1/maps",
            "/v1/weapons",
            "/v1/tiers",
            "/v1/gamemodes",
            "/v1/meta"
        ]
    },
    "meta": {
        "timestamp": "2026-06-01T00:04:03.763Z",
        "request_id": "f0e43380-1e8b-47b1-8555-defc55e6f22a"
    },
    "status": "ok",
    "message": "Meta retrieved",
    "success": true
}