# Nova AI Inference API — Batch Endpoint

> Nova AI Inference API — Batch Endpoint 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-14).

Runs one or more AI inference tasks (chat, reasoning, translation, analysis, generation) in a single batch call, paid per-call in USDC on Base via x402.

## Facts

- Endpoint: POST https://noa.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-6e364ae7
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_B_Kci4COWImEJoHInZM2E

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

Example prompt: Can you send these 5 customer support messages to Nova for analysis — run them concurrently using the default model — and tell me what each one is asking for?

## When to prefer this

Choose this endpoint when you need to process multiple AI inference tasks in a single HTTP call and want to pay per-use in USDC on Base without a subscription. It is especially useful for batch workflows (translation, analysis, chat, generation) where parallel execution via the concurrent flag can reduce latency. Prefer it over single-call endpoints when you have multiple items to process simultaneously.

## Known failure modes

- Payment not received or insufficient USDC — 402 Payment Required
- Invalid or missing items array — 400 Bad Request
- Unsupported model name — 400 or 422 error
- Inference timeout for large or complex batch — 504 or partial results
- Concurrent flag conflict with item count — undefined behavior or 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 flag, a results array (each item has an id, output text, and usage stats), total token usage across the batch, 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-6e364ae7/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)
