/v1/maps
All maps
Δοκιμάστε το ζωντανά
10 δωρεάν κλήσεις την ημέρα — χωρίς εγγραφή, χωρίς κλειδί API. Μέσω του gateway του oanor.
Δουλεύει. Πάρε ένα κλειδί API και χρησιμοποίησέ το στο έργο σου.
Λάβετε ένα κλειδί APIΑποσπάσματα κώδικα
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_..."}
)
Παράδειγμα απόκρισης
Πραγματική απόκριση αυτού του endpoint, από τον τελευταίο έλεγχο υγείας.
{
"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
…