Zum Inhalt springen
GET /v1/maps

Maps (all or by name)

Live testen

10 freie Calls pro Tag — keine Anmeldung, kein API-Key. Geht durchs oanor-Gateway.

Eigene Header (optional)
api.oanor.com/valorant-api

Funktioniert. Hol dir einen API-Key und nutze sie in deinem Projekt.

API-Key holen

Code-Snippets

curl "https://api.oanor.com/valorant-api/v1/maps" \
  -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/valorant-api/v1/maps", {
  headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/valorant-api/v1/maps");
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/maps",
    headers={"x-oanor-key": "oanor_test_..."}
)

Beispiel-Response

Echte Antwort dieses Endpoints, erfasst beim letzten Health-Check.

{
    "data": {
        "map": {
            "name": "Bind",
            "uuid": "2c9d57ec-4431-9c5e-2939-8f9ef6dd5cba",
            "splash": "https://media.valorant-api.com/maps/2c9d57ec-4431-9c5e-2939-8f9ef6dd5cba/splash.png",
            "minimap": "https://media.valorant-api.com/maps/2c9d57ec-4431-9c5e-2939-8f9ef6dd5cba/displayicon.png",
            "callouts": 24,
            "list_icon": "https://media.valorant-api.com/maps/2c9d57ec-4431-9c5e-2939-8f9ef6dd5cba/listviewicon.png",
            "coordinates": "34°2'A'N,6°51'Z'W",
            "description": "A/B Sites"
        }
    },
    "meta": {
        "timestamp": "2026-06-01T00:04:03.384Z",
        "request_id": "86d91756-0bf7-4d05-8416-a1d834c63af4"
    },
    "status": "ok",
    "message": "Maps retrieved",
    "success": true
}