Zum Inhalt springen
GET /v1/maps

All maps

Live testen

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

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

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

API-Key holen

Code-Snippets

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

Beispiel-Response

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

{
    "data": {
        "maps": [
            {
                "name": "Aatlis",
                "location": "Morocco",
                "gamemodes": [
                    "flashpoint"
                ],
                "screenshot": "https://overfast-api.tekrop.fr/static/maps/aatlis.jpg",
                "country_code": "MA"
            },
            {
                "name": "Antarctic Peninsula",
                "location": "Antarctica",
                "gamemodes": [
                    "control"
                ],
                "screenshot": "https://overfast-api.tekrop.fr/static/maps/antarctic-peninsula.jpg",
                "country_code": "AQ"
            },
            {
                "name": "Temple of Anubis",
                "location": "Giza Plateau, Egypt",
                "gamemodes": [
                    "assault"
                ],
                "screenshot": "https://overfast-api.tekrop.fr/static/maps/anubis.jpg",
                "country_code": "EG"
            },
            {
                "name": "Arena Victoriae",
                "location": "Colosseo, Rome, Italy",
                "gamemodes": [
                    "control"
                ],
                "screenshot": "https://overfast-api.tekrop.fr/static/maps/arena-victoriae.jpg",
                "country_code": "IT"
            },
            {
                "name": "Ayutthaya",
                "location": "Thailand",
                "gamemodes": [
                    "capture-the-flag"
                ],
                "screenshot": "https://overfast-api.tekrop.fr/static/maps/ayutthaya.jpg",
                "country_code": "TH"
            },
            {
                "name": "Black Forest",
                "location": "Germany",
                "gamemodes": [
                    "elimination"
                ],
                "screenshot": "https://overfast-api.tekrop.fr/static/maps/black-forest.jpg",
                "country_code": "DE"
            },
            {
                "name": "Blizzard World",
                "location": "Irvine, California, United States",
                "gamemodes": [
                    "hybrid"
                ],
                "screenshot": "https://overfast-api.tekrop.fr/static/maps/blizzard-world.jpg",
                "country_code": "US"
            },
            {
                "name": "Busan",
                "location": "South Korea",
                "gamemodes": [
                    "control"
                ],
                "screenshot": "https://overfast-api.tekrop.fr/static/maps/busan.jpg",
                "country_code": "KR"
            },
            {
                "name": "Castillo",
                "location": "Mexico",
                "gamemodes": [
                    "elimination"
                ],
                "screenshot": "https://overfast-api.tekrop.fr/static/maps/castillo.jpg",
                "country_code": "MX"
            },
            {
                "name": "Châte
…