Voxel Network

Public API access

Browse the intentionally public, read-only Voxel Network data API. Protected dashboard, verification, management, and service-control interfaces are not published here.

No authenticationHTTPS · JSONGET only

Implementation examples

Connect in your preferred language

Choose an example below. Each uses the same public, read-only endpoint without credentials or private headers.

Standard library example; no external package is required.

import json
from urllib.request import Request, urlopen

url = "https://api.voxelnetwork.org/FactionLaws/plr"
request = Request(url, headers={"Accept": "application/json"})

with urlopen(request, timeout=15) as response:
    laws = json.load(response)

for law in laws:
    print(f"{law['lawId']}: {law['title']}")

8

Documented public endpoints

5

Safe browser test actions

Hidden

Internal and authenticated routes

Faction laws

2 public endpoints

General player data

2 public endpoints

NATO player data

2 public endpoints

PLR player data

2 public endpoints

Public responses are JSON. The compatibility field divison is intentionally spelled as shown.