/v1/worlds
Server list
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/gw2-api/v1/worlds" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/gw2-api/v1/worlds", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/gw2-api/v1/worlds");
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/gw2-api/v1/worlds",
headers={"x-oanor-key": "oanor_test_..."}
)
Beispiel-Response
Echte Antwort dieses Endpoints, erfasst beim letzten Health-Check.
{
"data": {
"count": 27,
"worlds": [
{
"id": 2001,
"name": "Fissure of Woe",
"region": "EU",
"population": "Medium"
},
{
"id": 2002,
"name": "Desolation",
"region": "EU",
"population": "VeryHigh"
},
{
"id": 2003,
"name": "Gandara",
"region": "EU",
"population": "Full"
},
{
"id": 2004,
"name": "Blacktide",
"region": "EU",
"population": "Medium"
},
{
"id": 2005,
"name": "Ring of Fire",
"region": "EU",
"population": "High"
},
{
"id": 2006,
"name": "Underworld",
"region": "EU",
"population": "Medium"
},
{
"id": 2007,
"name": "Far Shiverpeaks",
"region": "EU",
"population": "Full"
},
{
"id": 2008,
"name": "Whiteside Ridge",
"region": "EU",
"population": "Full"
},
{
"id": 2009,
"name": "Ruins of Surmia",
"region": "EU",
"population": "Medium"
},
{
"id": 2010,
"name": "Seafarer's Rest",
"region": "EU",
"population": "VeryHigh"
},
{
"id": 2011,
"name": "Vabbi",
"region": "EU",
"population": "VeryHigh"
},
{
"id": 2012,
"name": "Piken Square",
"region": "EU",
"population": "Medium"
},
{
"id": 2013,
"name": "Aurora Glade",
"region": "EU",
"population": "High"
},
{
"id": 2014,
"name": "Gunnar's Hold",
"region": "EU",
"population": "High"
},
{
"id": 2101,
"name": "Jade Sea [FR]",
"region": "EU",
"population": "Medium"
},
{
"id": 2102,
"name": "Fort Ranik [FR]",
"region": "EU",
"population": "Medium"
},
{
"id": 2103,
"name": "Augury Rock [FR]",
"region": "EU",
"population": "High"
},
{
"id": 2104,
"name": "Vizunah Square [FR]",
…