Skip to content
GET /v1/wvw

World-vs-World scores

Try it live

10 free calls per day — no sign-up, no API key. Goes through the oanor gateway.

Custom headers (optional)
api.oanor.com/gw2-api

It works. Grab an API key and use it in your project.

Get an API key

Code snippets

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

Example response

A real response from this endpoint, captured by the latest health check.

{
    "data": {
        "count": 9,
        "matches": [
            {
                "id": "2-1",
                "end": "2026-06-05T17:58:00Z",
                "tier": "1",
                "kills": {
                    "red": 10019,
                    "blue": 10719,
                    "green": 19812
                },
                "start": "2026-05-29T18:00:00Z",
                "deaths": {
                    "red": 13928,
                    "blue": 14355,
                    "green": 13131
                },
                "region": "EU",
                "scores": {
                    "red": 222671,
                    "blue": 196186,
                    "green": 260735
                },
                "worlds": {
                    "red": 2013,
                    "blue": 2004,
                    "green": 2012
                },
                "victory_points": {
                    "red": 555,
                    "blue": 485,
                    "green": 716
                }
            },
            {
                "id": "2-2",
                "end": "2026-06-05T17:58:00Z",
                "tier": "2",
                "kills": {
                    "red": 13227,
                    "blue": 14266,
                    "green": 11994
                },
                "start": "2026-05-29T18:00:00Z",
                "deaths": {
                    "red": 14140,
                    "blue": 13420,
                    "green": 12828
                },
                "region": "EU",
                "scores": {
                    "red": 264959,
                    "blue": 238002,
                    "green": 240766
                },
                "worlds": {
                    "red": 2101,
                    "blue": 2003,
                    "green": 2007
                },
                "victory_points": {
                    "red": 566,
                    "blue": 583,
                    "green": 607
                }
            },
            {
                "id": "2-3",
                "end": "2026-06-05T17:58:00Z",
                "tier": "3",
                "kills": {
                    "red": 14004,
                    "blue": 12167,
                    "green": 17793
                },
                "start": "2026-05-29T18:00:00Z",
                "deaths": {
                    "red": 14144,
                    "blue": 18141,
                    "green": 12714
                },
                "region": "EU",
                "scores": {
                    "red": 226708,
                    "blue": 276246,
                    "green": 252821
                },
                "worlds": {
                    "red": 2010,
                    "blue": 2001,
                    "green": 2014
                },
                "victory_points": {
                    "red": 494,
                    "blue": 620,
                    "green": 642
                }
            },
            {
                "id
…