# Nova AI Summarize Endpoint

> Nova AI Summarize Endpoint 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).

Summarizes a given text into a condensed form with key points, using pay-per-call AI inference paid in USDC on Base.

## Facts

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

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-ce3308c4 -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: [paste of long article text]

## When to prefer this

Choose this endpoint when you need a pay-per-call, no-subscription text summarization service that settles payments in USDC on Base via x402 protocol. Ideal for agents that process occasional long-form documents without a monthly API key commitment, or when operating in crypto-native payment environments.

## Known failure modes

- Missing required 'text' field returns a 400 validation error
- Insufficient USDC balance or failed x402 payment results in a 402 Payment Required response
- Text too long for model context window may return a 422 or truncation error
- Invalid 'format' enum value may return a 400 error
- Service unavailable or inference timeout returns a 503 error

## How this service works

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

## Output

Returns a JSON object containing a summary string, an array of key bullet-point takeaways, the model used, token usage stats, and the output format — wrapped in a success/meta envelope.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "text"
 ],
 "properties": {
  "text": {
   "type": "string",
   "description": "Text to summarize"
  },
  "format": {
   "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-ce3308c4/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)
