Vai al contenuto
GET /v1/worlds

Server list

Provalo dal vivo

10 chiamate gratuite al giorno — senza registrazione, senza chiave API. Passa dal gateway oanor.

Intestazioni personalizzate (facoltative)
api.oanor.com/gw2-api

Funziona. Prendi una chiave API e usala nel tuo progetto.

Ottieni una chiave API

Frammenti di codice

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_..."}
)

Risposta di esempio

Una risposta reale di questo endpoint, acquisita dall'ultimo 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]",
  
…