QovaQova docs
REST API

API Overview

21 endpoints for programmatic access to scores, transactions, budgets, and verification.

The Qova REST API runs on Hono + Bun with 21 endpoints. All responses are JSON. Rate-limited, cached, and validated with Zod.

Base URL: https://api.qova.cc

Response Format

{
  "success": true,
  "data": { ... }
}

Error responses:

{
  "success": false,
  "error": {
    "code": "AGENT_NOT_FOUND",
    "message": "Agent 0x1234... is not registered"
  }
}

Endpoint Groups

Middleware

LayerDescription
CORSCross-origin enabled
Body Limit1MB max request body
Rate LimitingPer-IP limits (see each endpoint)
Cache30s TTL on GET requests
ValidationZod schema validation
Error HandlerStructured error codes