MeterOva
Developer docs

OpenAI-compatible API access with billing built in.

Customers call MeterOva with a virtual API key. The platform validates balance, applies limits, forwards the request upstream, records token usage, and deducts wallet credit.

Example request
curl https://your-site.com/v1/chat/completions \
  -H "Authorization: Bearer sk-meterova-..." \
  -H "Content-Type: application/json" \
  -d '{
    "model": "basic-chat",
    "messages": [{"role": "user", "content": "Hello"}]
  }'

/v1/models

List public models exposed by your MeterOva catalog.

/v1/chat/completions

Proxy OpenAI-compatible chat completion requests.

/v1/responses

Proxy Responses API requests and record usage.

/v1/embeddings

Proxy embedding requests through the same metering layer.

Authentication

Pass Authorization: Bearer sk-meterova-... on every request.

Model routing

Public model names map to upstream provider models in the admin catalog.

Usage records

Each request creates usage logs for spend, tokens, status, and latency.