# Nova AI Inference API — Search/Query Endpoint

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

Accepts a natural language query and returns an AI-generated answer via pay-per-call inference, billed in USDC on Base.

## Facts

- Endpoint: POST https://noa.orbonomy.xyz/api/search
- Price: $0.05/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-search-query-endpoint-c1b5907c
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_v8LYV33QLbHf34rdex1L9

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-search-query-endpoint-c1b5907c -d '<json body>'
```

Example prompt: Ask Nova to explain the difference between proof-of-work and proof-of-stake in plain English — just send the query and get back its AI-generated answer.

## When to prefer this

Choose this endpoint when you need a lightweight, pay-per-call AI inference call billed in USDC on Base without a subscription or API key commitment — ideal for crypto-native agents that can execute x402 micropayments and need one-shot question answering, reasoning, or text generation at $0.05 per call.

## Known failure modes

- Payment not made or insufficient USDC balance — returns 402 Payment Required
- Missing required `query` field — likely 400 Bad Request
- Invalid or malformed JSON body — 400 Bad Request
- Upstream model unavailable — possible 503 or timeout
- Query too long or exceeds token limits — potential error response

## 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 `answer`, the `query` echoed back, the `model` used, and token `usage` stats, plus a `success` boolean and `meta` info.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "query"
 ],
 "properties": {
  "query": {
   "type": "string",
   "description": "Search query"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "data": {
   "type": "object",
   "properties": {
    "model": {
     "type": "string"
    },
    "query": {
     "type": "string"
    },
    "usage": {
     "type": "object"
    },
    "answer": {
     "type": "string"
    }
   }
  },
  "meta": {
   "type": "object"
  },
  "success": {
   "type": "boolean"
  }
 }
}
```

## More

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