Developer API
Infrastructure, in your language.
Explore API NetStats request examples, response schemas, and local simulations for network status, regions, latency, routes, and telemetry.
Interactive documentation demo. Endpoints are illustrative; “Run example” produces a response entirely in your browser. No API request is made.
Network status
Read a point-in-time summary of regional health, network availability, and aggregate latency.
GET /v1/network/status
curl --request GET https://api-netstats.space/v1/network/status --header 'Accept: application/json'Example response
Static example · HTTP 200 · application/json
RESPONSE BODY
{
"status": "operational",
"healthy_regions": 14,
"total_regions": 14,
"edge_locations": 64,
"median_latency_ms": 18,
"availability_target": 99.999,
"timestamp": "2026-09-15T12:00:00Z"
}Predictable by design.
All timestamps use ISO 8601 in UTC. Latency is measured in milliseconds, capacity in Gbps, and windows in seconds. The examples intentionally contain no API keys or authentication flow.
| Code | Meaning | Caller action |
|---|---|---|
| 200 | Snapshot available | Read the measurement window |
| 400 | Invalid region or interval | Check parameter format |
| 503 | Snapshot unavailable | Retry with bounded backoff |
Example error envelope
{ "error": { "code": "invalid_region", "message": "Unknown region identifier" } }There is no live API, account system, or rate limit on this static demonstration. Executing copied requests outside this explorer will not reach a working API.