# Nova AI Inference API

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

Accepts a text prompt and returns AI-generated output (chat, reasoning, translation, analysis, or generation) billed per-call in USDC on Base.

## Facts

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

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-24b0d5fc -d '<json body>'
```

Example prompt: Use Nova to generate a concise explanation of how transformer neural networks work — return the result as plain text.

## When to prefer this

Choose this endpoint when you need flexible, general-purpose AI inference (chat, reasoning, translation, analysis, or generation) billed on a pay-per-call basis in USDC on Base via the x402 protocol, especially when you want structured JSON output via schema-guided generation or don't want to manage a subscription to a major AI provider.

## Known failure modes

- Prompt field missing — returns validation error
- Insufficient USDC balance or payment failure — 402 Payment Required
- Malformed JSON schema in the `schema` field — parsing error
- Model or provider unavailable — inference timeout or 503
- Output does not conform to requested JSON schema — schema mismatch error

## How this service works

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

## Output

A JSON object with a `success` boolean, a `data` object containing the model name, provider, output format, the generated text in `output`, and usage statistics, plus a `meta` object with additional metadata.

## 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-24b0d5fc/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from noa.orbonomy.xyz](https://www.zero.xyz/host/noa.orbonomy.xyz/llms.txt)
