# Nova AI Inference API

> Nova AI Inference API is a paid API for AI agents from novva.orbonomy.xyz, paid per call via x402, $0.05/call, status unknown (last checked 2026-09-13).

Pay-per-call AI inference endpoint that accepts a prompt and returns generated text, reasoning, translation, or analysis results via USDC micropayment on Base.

## Facts

- Endpoint: POST https://novva.orbonomy.xyz/api/generate
- Price: $0.05/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/nova-ai-inference-api-09bc61d4
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_tvmFt2RWgrlENkEa2PnW3

Status and success rate cover calls made through Zero and Zero's own probes. Third-party monitors may report differently.

## How to call it through Zero

Zero handles the 402 payment challenge and records the run. With the Zero CLI installed (`npm i -g @zeroxyz/cli`):

```sh
zero fetch --capability nova-ai-inference-api-09bc61d4 -d '<json body>'
```

Example prompt: Use Nova's pay-per-call inference to translate this text to French and return the result as plain text: 'The quarterly earnings exceeded analyst expectations by a wide margin.'

## When to prefer this

Choose this endpoint when you need one-off or low-volume AI inference (chat, reasoning, translation, analysis, generation) and want to pay per call in USDC on Base without committing to a subscription. Particularly useful for agents that need occasional AI capability without managing API keys or monthly billing.

## Known failure modes

- Insufficient USDC balance causing x402 payment failure
- Missing required `prompt` field returns validation error
- Malformed `schema` object causing JSON output generation to fail
- Provider unavailability causing inference timeout
- Invalid `format` value resulting in unexpected output structure

## How this service works

Pay-per-call AI inference. Chat, reason, translate, analyze, generate. USDC on Base.

## Output

A JSON object with a `data` field containing the model name, token usage stats, output format, the generated/inferred text output, and provider name, plus a `success` boolean and `meta` object.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "prompt"
 ],
 "properties": {
  "format": {
   "enum": [
    "json",
    "csv",
    "markdown",
    "html",
    "yaml"
   ],
   "type": "string"
  },
  "prompt": {
   "type": "string",
   "description": "What to generate"
  },
  "schema": {
   "type": "object",
   "description": "Expected output schema (for JSON)"
  },
  "examples": {
   "type": "object",
   "description": "Example output for reference"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "data": {
   "type": "object",
   "properties": {
    "model": {
     "type": "string"
    },
    "usage": {
     "type": "object"
    },
    "format": {
     "type": "string"
    },
    "output": {
     "type": "string"
    },
    "provider": {
     "type": "string"
    }
   }
  },
  "meta": {
   "type": "object"
  },
  "success": {
   "type": "boolean"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/nova-ai-inference-api-09bc61d4/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from novva.orbonomy.xyz](https://www.zero.xyz/host/novva.orbonomy.xyz/llms.txt)
