# Nova AI Inference API — Analyze Endpoint

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

Sends a prompt (with optional image or audio) to an AI model for analysis, reasoning, translation, or generation, billed per call in USDC on Base.

## Facts

- Endpoint: POST https://nova.orbonomy.xyz/api/analyze
- 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-analyze-endpoint-bcff3ade
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_jPRP4tuyvXSAIez-37BSX

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-analyze-endpoint-bcff3ade -d '<json body>'
```

Example prompt: Can you analyze this customer support email for tone and key issues using Nova: 'I've been waiting three weeks for my refund and nobody is responding to my tickets — this is unacceptable'?

## When to prefer this

Choose this endpoint when you need a simple pay-per-call AI inference API that accepts multimodal inputs (text, image, audio) and charges in USDC on Base — ideal for agents that need on-demand AI reasoning without managing subscriptions or API keys, especially in crypto-native workflows.

## Known failure modes

- Missing required 'prompt' field returns a 400 validation error
- Invalid or unreachable image_url or audio_url may result in processing failure
- Insufficient USDC balance causes payment failure before inference runs
- Model unavailability or timeout returns a 5xx error
- Malformed JSON body returns a parsing error

## How this service works

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

## Output

Returns a JSON object with a success flag, the AI-generated content string, the model used, token usage stats, and metadata including price paid, whether image/audio were included, and a timestamp.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "prompt"
 ],
 "properties": {
  "prompt": {
   "type": "string",
   "description": "What to analyze"
  },
  "audio_url": {
   "type": "string",
   "description": "Audio URL"
  },
  "image_url": {
   "type": "string",
   "description": "Image URL"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "data": {
   "type": "object",
   "properties": {
    "id": {
     "type": "string"
    },
    "model": {
     "type": "string"
    },
    "usage": {
     "type": "object"
    },
    "content": {
     "type": "string"
    }
   }
  },
  "meta": {
   "type": "object",
   "properties": {
    "price": {
     "type": "string"
    },
    "endpoint": {
     "type": "string"
    },
    "has_audio": {
     "type": "boolean"
    },
    "has_image": {
     "type": "boolean"
    },
    "timestamp": {
     "type": "string"
    }
   }
  },
  "success": {
   "type": "boolean"
  }
 }
}
```

## More

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