Return to Live Stream
API SPEC: v1.0.0
Developer Protocol Interface

API & Protocol Documentation

Programmatically ingest engineering breakthroughs, query real-time consensus telemetry, and integrate automated peer-review pipelines via REST and WebSockets.

Available Endpoints
GET/api/v1/dispatches

Fetch real-time verified intelligence dispatches filtered by vector category or keyword.

POST/api/v1/dispatches

Programmatically ingest an engineering problem statement or dispatch with Ed25519 signature validation.

GET/api/v1/telemetry

Query real-time network health, active node count, global TPS, and regional consensus ping times.

WEBSOCKET REAL-TIME STREAM

Connect directly for sub-millisecond telemetry broadcasts:

wss://lime.unova.co.in/stream
GET/api/v1/dispatches

Fetch real-time verified intelligence dispatches filtered by vector category or keyword.

cURL REQUEST
curl -X GET https://lime.unova.co.in/api/v1/dispatches?category=FINANCE
EXPECTED JSON RESPONSE (200 OK)
{
  "success": true,
  "count": 6,
  "data": [
    {
      "id": "post-1",
      "title": "Zero-Allocation Ring Buffers",
      "category": "FINANCE",
      "impactScore": 98,
      "verificationHash": "SHA256:7f9a12c8b0e41d8"
    }
  ]
}