NNMG Edge API
All systems operational

Developer platform · 2026.08

Build at the edge.
Ship with confidence.

A clean, predictable interface for event delivery, regional data access, and low-latency application workflows.

99.99%30-day uptime
38 msMedian response
v1Stable release

API methods

Resource-oriented paths, consistent envelopes, and small payloads designed for straightforward integrations.

GET/v1/status

Service status

Read the current availability state and release identifier.

POST/v1/events

Publish an event

Submit an immutable event for validated asynchronous delivery.

GET/v1/regions

List regions

Discover available processing regions and capability metadata.

POST/v1/tokens/verify

Verify a token

Validate an access token and return its active permission scope.

Predictable by design

One response shape.
Every time.

Successful requests return compact data and trace metadata. Errors follow the same envelope, making handling simple and observable.

200 · application/json
{
  "ok": true,
  "data": {
    "status": "operational",
    "release": "v1"
  },
  "trace": "demo_7f31"
}
Event accepted
{
  "ok": true,
  "data": {
    "accepted": true,
    "sequence": 1842
  }
}