# Nova AI Text Classification API

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

Classifies input text into user-specified categories using pay-per-call AI inference on Base/USDC

## Facts

- Endpoint: POST https://nuvo.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-text-classification-api-7be9f721
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_7jO2O6ja5OZYwf76S_NCk

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-text-classification-api-7be9f721 -d '<json body>'
```

Example prompt: Classify this customer review as 'positive', 'negative', or 'neutral' using Nova: 'The product arrived on time but the packaging was completely crushed and one item was broken.'

## When to prefer this

Choose this endpoint when you need a pay-per-call, USDC-on-Base text classification with customizable category labels and no subscription commitment. Ideal for agents that need to dynamically classify arbitrary text at low volume or on a sporadic basis without managing API keys or monthly plans.

## Known failure modes

- Missing required 'text' field returns validation error
- Empty or malformed categories array may produce undefined classification behavior
- Insufficient USDC balance triggers x402 payment required error
- Overly long text may exceed model context limits
- Invalid task string may default to generic classification or return 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 classification result object (label/category assignments), the model used, provider name, and token usage stats, wrapped in a success boolean and meta envelope.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "text"
 ],
 "properties": {
  "task": {
   "enum": [
    "sentiment",
    "classify",
    "intent",
    "toxicity",
    "language"
   ],
   "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-text-classification-api-7be9f721/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from nuvo.orbonomy.xyz](https://www.zero.xyz/host/nuvo.orbonomy.xyz/llms.txt)
