# 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.1/call, status unknown (last checked 2026-09-13).

Pay-per-call AI inference endpoint for chat, reasoning, translation, analysis, and generation, billed in USDC on Base via x402.

## Facts

- Endpoint: POST https://novva.orbonomy.xyz/api/think
- Price: $0.1/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-d2f03941
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_2SoEZqAbWOBTU6PWWuB3t

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

Example prompt: Send this conversation to Nova and get a response — the messages are [{"role":"user","content":"Explain quantum entanglement in simple terms"}], use a max of 512 tokens and a temperature of 0.7.

## When to prefer this

Choose this endpoint when you need pay-per-call AI inference billed in USDC on Base via x402, avoiding subscription commitments. Suitable for agents that need on-demand LLM calls with crypto-native micropayment rails and want chat, reasoning, translation, or analysis in a single unified endpoint.

## Known failure modes

- Payment failure or insufficient USDC balance resulting in 402 response
- Malformed messages array causing validation error
- Token limit exceeded causing truncated or failed response
- Model unavailable or overloaded causing timeout
- Invalid temperature value outside accepted range

## How this service works

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

## Output

A JSON object containing a success flag, the generated text content, model name, token usage breakdown (prompt, completion, total), finish reason, and metadata including price, timestamp, and whether deep thinking was used.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "messages"
 ],
 "properties": {
  "messages": {
   "type": "array"
  },
  "max_tokens": {
   "type": "integer"
  },
  "temperature": {
   "type": "number"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "data": {
   "type": "object",
   "properties": {
    "id": {
     "type": "string"
    },
    "model": {
     "type": "string"
    },
    "usage": {
     "type": "object",
     "properties": {
      "total_tokens": {
       "type": "integer"
      },
      "prompt_tokens": {
       "type": "integer"
      },
      "completion_tokens": {
       "type": "integer"
      }
     }
    },
    "content": {
     "type": "string"
    },
    "finish_reason": {
     "type": "string"
    }
   }
  },
  "meta": {
   "type": "object",
   "properties": {
    "model": {
     "type": "string"
    },
    "price": {
     "type": "string"
    },
    "endpoint": {
     "type": "string"
    },
    "timestamp": {
     "type": "string"
    },
    "deep_thinking": {
     "type": "boolean"
    }
   }
  },
  "success": {
   "type": "boolean"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/nova-ai-inference-api-d2f03941/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)
