# Nova AI Inference API — Analyze Endpoint

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

Runs pay-per-call AI inference on text prompts with optional image or audio inputs, returning model-generated analysis or content via USDC payment on Base.

## Facts

- Endpoint: POST https://novva.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-2bf128a0
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_IRITmpUlnds_F9kwekY_2

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

Example prompt: Can you use the Nova AI inference API to analyze this customer complaint and tell me what the core issue is: 'My order arrived three days late and the packaging was completely destroyed.'

## When to prefer this

Choose this endpoint when you need a pay-per-call AI inference capability billed in USDC on Base without a subscription, especially when you also want optional multimodal support (image or audio alongside a text prompt) in a single API call.

## Known failure modes

- Missing required 'prompt' field returns validation error
- Invalid or unreachable image_url or audio_url causes fetch failure
- Payment failure or insufficient USDC balance on Base blocks the call
- Model unavailable or overloaded returns a server error
- Malformed JSON body returns 400-level 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, model name, token usage stats, and metadata including price, 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-2bf128a0/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from novva.orbonomy.xyz](https://www.zero.xyz/host/novva.orbonomy.xyz/llms.txt)
