# Nova AI Inference API — Analyze Endpoint

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

Accepts a text prompt (plus optional image or audio URLs) and returns AI-generated analysis, reasoning, translation, or chat responses, billed per call in USDC on Base.

## Facts

- Endpoint: POST https://novav2.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-357cde98
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_nvsSybwF0JOrbcYYvU8EA

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-357cde98 -d '<json body>'
```

Example prompt: Can you analyze this customer feedback for me using Nova's pay-per-call AI — here's the text: 'The product arrived late and was damaged, but customer support was surprisingly helpful.' Tell me the sentiment and key issues.

## When to prefer this

Choose this endpoint when you need flexible, pay-per-call AI inference (text, image, or audio) without a subscription, and you want to pay in USDC on Base via x402. Ideal for agents that need occasional AI reasoning, translation, or analysis without committing to a monthly plan or managing API keys for a major provider directly.

## Known failure modes

- Missing required 'prompt' field returns validation error
- Invalid or inaccessible image_url or audio_url causes fetch failure
- Insufficient USDC balance or failed x402 payment results in 402 Payment Required
- Prompt too long or unsupported content type may cause model error
- Downstream AI model unavailability causes 5xx 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 'data' field containing the AI-generated content string, the model name used, and token usage stats, plus a 'meta' field with pricing info, endpoint name, flags indicating whether audio/image were included, and a timestamp. Also includes 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-357cde98/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from novav2.orbonomy.xyz](https://www.zero.xyz/host/novav2.orbonomy.xyz/llms.txt)
