/v1/gamemodes
Playable game modes
Live testen
10 freie Calls pro Tag — keine Anmeldung, kein API-Key. Geht durchs oanor-Gateway.
Funktioniert. Hol dir einen API-Key und nutze sie in deinem Projekt.
API-Key holenCode-Snippets
curl "https://api.oanor.com/valorant-api/v1/gamemodes" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/valorant-api/v1/gamemodes", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/valorant-api/v1/gamemodes");
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/gamemodes",
headers={"x-oanor-key": "oanor_test_..."}
)
Beispiel-Response
Echte Antwort dieses Endpoints, erfasst beim letzten Health-Check.
{
"data": {
"count": 16,
"gamemodes": [
{
"icon": "https://media.valorant-api.com/gamemodes/1cd8901f-47af-49cb-d758-e2afd0eb2a39/displayicon.png",
"name": "All Random One Site",
"uuid": "1cd8901f-47af-49cb-d758-e2afd0eb2a39",
"duration": "10-15 MINS",
"description": "LIMITED TIME: Plant/defuse mode. One site, random agents, free loadouts, way more ultimates. First to 5 wins.",
"allows_timeouts": false
},
{
"icon": "https://media.valorant-api.com/gamemodes/96bd3920-4f36-d026-2b28-c683eb0bcac5/displayicon.png",
"name": "Standard",
"uuid": "96bd3920-4f36-d026-2b28-c683eb0bcac5",
"duration": "30-40 MINS",
"description": "Plant/defuse mode. Unranked matches, full map pool, attack and defend, classic gameplay. First to 13 wins.",
"allows_timeouts": true
},
{
"icon": "https://media.valorant-api.com/gamemodes/a8790ec5-4237-f2f0-e93b-08a8e89865b2/displayicon.png",
"name": "Deathmatch",
"uuid": "a8790ec5-4237-f2f0-e93b-08a8e89865b2",
"duration": "7-9 MINS",
"description": "Elimination mode. All gunplay, respawn instantly, no abilities, no economy. First to 40 kills wins.",
"allows_timeouts": false
},
{
"icon": "https://media.valorant-api.com/gamemodes/1a4a3fd5-4966-62cb-7fe4-15b0317f5c80/displayicon.png",
"name": "Knockout",
"uuid": "1a4a3fd5-4966-62cb-7fe4-15b0317f5c80",
"duration": "10-15 MINS",
"description": "LIMITED TIME: Elimination mode. Round-based, takedowns revive teammates, push the line, fight together. First to 4 rounds wins.",
"allows_timeouts": true
},
{
"icon": "https://media.valorant-api.com/gamemodes/d2d0f229-4514-517a-b10a-aaa0ef0d4a67/displayicon.png",
"name": "Bot Match",
"uuid": "d2d0f229-4514-517a-b10a-aaa0ef0d4a67",
"duration": null,
"description": null,
"allows_timeouts": false
},
{
"icon": "https://media.valorant-api.com/gamemodes/a4ed6518-4741-6dcb-35bd-f884aecdc859/displayicon.png",
"name": "Escalation",
"uuid": "a4ed6518-4741-6dcb-35bd-f884aecdc859",
"duration": "7-9 MINS",
"description": "Elimination mode. Team arsenal, weapon progression, eliminate to advance, race to finish. First to complete wins.",
"allows_timeouts": false
},
{
"icon": "https://media.valorant-api.com/gamemodes/e086db66-47fd-e791-ca81-06a645ac7661/displayicon.png",
"name": "Team Deathmatc
…