# Nova AI Summarize Endpoint

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

Summarizes input text into a concise summary with key points, powered by pay-per-call AI inference on Base/USDC

## Facts

- Endpoint: POST https://novva.orbonomy.xyz/api/summarize
- 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-summarize-endpoint-a37722e7
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_56j0eQucYiHVPziG2pVtq

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-summarize-endpoint-a37722e7 -d '<json body>'
```

Example prompt: Can you summarize this article for me in about 150 words and pull out the key points? Here's the text: 'Artificial intelligence is transforming industries at an unprecedented pace, from healthcare diagnostics to financial modeling...'

## When to prefer this

Use this endpoint when you need to quickly condense long-form text into a shorter summary with optional key point extraction, and you want pay-per-call pricing in USDC on Base rather than a subscription model. Ideal for one-off or low-volume summarization tasks where you don't want to maintain an API subscription.

## Known failure modes

- Missing required 'text' field returns a 400 validation error
- Text too long or malformed may return a processing error
- Payment failure (insufficient USDC on Base) results in 402 Payment Required
- Service unavailable or model overload returns 503
- Invalid 'format' enum value may cause unexpected output or 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 'summary' string containing the condensed text, a 'key_points' array of extracted highlights, the AI 'model' used, output 'format', and token 'usage' metadata, all under a 'data' wrapper with a 'success' boolean.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "text"
 ],
 "properties": {
  "text": {
   "type": "string",
   "description": "Text to summarize"
  },
  "format": {
   "enum": [
    "paragraph",
    "bullets",
    "tldr",
    "structured"
   ],
   "type": "string"
  },
  "max_length": {
   "type": "integer",
   "description": "Target word count"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "data": {
   "type": "object",
   "properties": {
    "model": {
     "type": "string"
    },
    "usage": {
     "type": "object"
    },
    "format": {
     "type": "string"
    },
    "summary": {
     "type": "string"
    },
    "key_points": {
     "type": "array",
     "items": {
      "type": "string"
     }
    }
   }
  },
  "meta": {
   "type": "object"
  },
  "success": {
   "type": "boolean"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/nova-ai-summarize-endpoint-a37722e7/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from novva.orbonomy.xyz](https://www.zero.xyz/host/novva.orbonomy.xyz/llms.txt)
