# Nova AI Inference API (Pipeline)

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

Executes a pay-per-call AI inference pipeline supporting chat, reasoning, translation, analysis, and generation, billed in USDC on Base.

## Facts

- Endpoint: POST https://nuvo.orbonomy.xyz/api/pipeline
- Price: $0.15/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-pipeline-47d66fce
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_5IS8INWEHFLNVgby-0Fun

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-pipeline-47d66fce -d '<json body>'
```

Example prompt: Using Nova's AI inference pipeline, run this two-step pipeline: first translate my input text 'Hello, how are you today?' into Spanish, then summarize the result — and execute it now.

## When to prefer this

Choose this endpoint when you need a pay-per-call, crypto-native (USDC on Base) AI inference pipeline that supports chaining multiple steps (chat, translation, reasoning, analysis, generation) in a single call without a subscription commitment.

## Known failure modes

- Payment not received or insufficient USDC balance — 402 Payment Required
- Malformed steps array or missing required fields — 400 Bad Request
- Pipeline step configuration invalid or unsupported model — 422 Unprocessable Entity
- Upstream AI model timeout or unavailability — 503 Service Unavailable
- Rate limiting on the endpoint — 429 Too Many Requests

## How this service works

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

## Output

Returns a JSON object with success status, the final output text from the last pipeline step, intermediate step results, total token/usage metrics, and the count of steps executed.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "steps"
 ],
 "properties": {
  "steps": {
   "type": "array"
  },
  "initial_input": {
   "type": "string",
   "description": "Input text for the pipeline"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "data": {
   "type": "object",
   "properties": {
    "results": {
     "type": "object"
    },
    "total_usage": {
     "type": "object"
    },
    "final_output": {
     "type": "string"
    },
    "steps_executed": {
     "type": "integer"
    }
   }
  },
  "meta": {
   "type": "object"
  },
  "success": {
   "type": "boolean"
  }
 }
}
```

## More

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