# Nova AI Inference API — Batch Endpoint

> Nova AI Inference API — Batch Endpoint is a paid API for AI agents from nuvo.orbonomy.xyz, paid per call via x402, $0.1/call, status unknown (last checked 2026-09-14).

Submits a batch of AI inference items (chat, reasoning, translation, analysis, generation) and returns results for each item in a single USDC-paid call.

## Facts

- Endpoint: POST https://nuvo.orbonomy.xyz/api/batch
- Price: $0.1/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/nova-ai-inference-api-batch-endpoint-93506b4a
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_3HVkymF7OL-8_8xOGPpIZ

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-batch-endpoint-93506b4a -d '<json body>'
```

Example prompt: Run these 3 tasks in parallel using Nova: translate 'hello world' to French, summarize 'AI is transforming industries' in one sentence, and answer 'What is the capital of Japan?' — pay with USDC on Base.

## When to prefer this

Choose this endpoint when you need to process multiple AI inference tasks (chat, translation, analysis, generation) in a single paid call rather than making separate requests, especially when you want to pay per-call in USDC on Base and optionally run items concurrently for speed.

## Known failure modes

- Empty or malformed items array returns a validation error
- Insufficient USDC balance triggers a 402 Payment Required response
- Invalid model identifier causes inference failure for affected items
- Concurrent flag misuse may cause timeouts on large batches
- Network or provider-side errors may result in partial results with some items failing

## How this service works

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

## Output

Returns a success flag, an array of per-item results each containing an ID, output text, and usage stats, plus aggregate total usage and the count of items processed.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "items"
 ],
 "properties": {
  "items": {
   "type": "array"
  },
  "model": {
   "enum": [
    "flash",
    "pro",
    "omni"
   ],
   "type": "string"
  },
  "concurrent": {
   "type": "boolean"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "data": {
   "type": "object",
   "properties": {
    "results": {
     "type": "array",
     "items": {
      "type": "object",
      "properties": {
       "id": {
        "type": "string"
       },
       "usage": {
        "type": "object"
       },
       "output": {
        "type": "string"
       }
      }
     }
    },
    "total_usage": {
     "type": "object"
    },
    "items_processed": {
     "type": "integer"
    }
   }
  },
  "meta": {
   "type": "object"
  },
  "success": {
   "type": "boolean"
  }
 }
}
```

## More

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