# Nova AI Inference — Text Classification

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

Classifies input text into user-defined categories using AI inference, paid per call in USDC on Base.

## Facts

- Endpoint: POST https://novav2.orbonomy.xyz/api/classify
- 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-text-classification-3144537f
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_0UUPlJ3WYLyPQ4xdOJRg5

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-text-classification-3144537f -d '<json body>'
```

Example prompt: Classify this customer review as 'positive', 'negative', or 'neutral' using Nova: 'The delivery was fast but the packaging was completely crushed.'

## When to prefer this

Use this endpoint when you need a lightweight, pay-per-call text classification API that accepts custom categories and returns structured labels — especially in agentic workflows where you want USDC micropayments on Base rather than subscription billing.

## Known failure modes

- Missing required 'text' field returns validation error
- Empty or null categories array may cause ambiguous classification
- Insufficient USDC balance triggers 402 payment required
- Overly long text may exceed model context limits
- Malformed JSON body returns 400 bad request

## How this service works

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

## Output

Returns a JSON object with a classification result object (label and confidence), the model and provider used, and token usage metadata, wrapped in a success flag and meta block.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "text"
 ],
 "properties": {
  "task": {
   "type": "string"
  },
  "text": {
   "type": "string",
   "description": "Text to classify"
  },
  "categories": {
   "type": "array",
   "description": "Categories for classification task"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "data": {
   "type": "object",
   "properties": {
    "task": {
     "type": "string"
    },
    "model": {
     "type": "string"
    },
    "usage": {
     "type": "object"
    },
    "provider": {
     "type": "string"
    },
    "classification": {
     "type": "object"
    }
   }
  },
  "meta": {
   "type": "object"
  },
  "success": {
   "type": "boolean"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/nova-ai-inference-text-classification-3144537f/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)
