/v1/meta
Usage notes
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/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_..."}
)
Voorbeeldrespons
Een echte respons van dit endpoint, vastgelegd bij de laatste health check.
{
"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
}