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

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

## Facts

- Endpoint: POST https://noa.orbonomy.xyz/api/think
- Price: $0.1/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-d7f0e49f
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_vQDW2qZXya--Q-05ofw1u

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

Example prompt: Ask Nova to reason through this for me: 'What are the key trade-offs between microservices and monolithic architectures for a startup?' — use up to 512 tokens and a temperature of 0.7.

## When to prefer this

Choose this endpoint when you need pay-per-call AI inference without a subscription, particularly when operating with USDC on Base for micropayments, and when you want a simple chat/reasoning/translation/analysis capability bundled in a single endpoint with token usage reporting.

## Known failure modes

- Payment not provided or insufficient USDC — 402 response requiring x402 payment
- Missing required 'messages' array — 400 validation error
- Messages array malformed or empty — inference may fail or return empty content
- Model unavailable or overloaded — 5xx server error
- Temperature or max_tokens out of range — validation error
- Network timeout if inference takes too long

## How this service works

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

## Output

Returns a JSON object with a 'data' field containing the generated text content, model used, token usage breakdown (prompt, completion, total), and finish reason, plus a 'meta' field with model name, price, endpoint, timestamp, and whether deep thinking was enabled, and a top-level 'success' boolean.

## 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-d7f0e49f/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)
