# Nova AI Inference API — Analyze Endpoint

> Nova AI Inference API — Analyze Endpoint is a paid API for AI agents from ova.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, image, or audio inputs to chat, reason, translate, analyze, or generate content, billed in USDC on Base.

## Facts

- Endpoint: POST https://ova.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-8876d793
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_8YBer2A-A_JP1qgn4IzzW

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-8876d793 -d '<json body>'
```

Example prompt: Can you use Nova's inference API to analyze this image — https://example.com/photo.jpg — and tell me what's in it? My prompt is: 'Describe the main subject and any notable details in this photo.'

## When to prefer this

Choose this endpoint when you need flexible, pay-per-call AI inference (text, image, or audio) without a subscription, billed in USDC on Base via the x402 protocol — ideal for agents that need occasional AI reasoning, translation, analysis, or generation without committing to a fixed-cost API plan.

## Known failure modes

- Missing required 'prompt' field returns a validation error
- Invalid or inaccessible image_url or audio_url causes processing failure
- Insufficient USDC balance or failed x402 payment results in 402 Payment Required
- Malformed request body returns 400 Bad Request
- Model overload or server error returns 500 with success:false

## How this service works

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

## Output

Returns a JSON object with a 'data' field containing the AI-generated content string, the model name used, and token usage stats; plus a 'meta' field with the price charged, endpoint name, flags for whether audio/image were included, and a timestamp; and a top-level 'success' boolean.

## 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-8876d793/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from ova.orbonomy.xyz](https://www.zero.xyz/host/ova.orbonomy.xyz/llms.txt)
