# Orbonomy Content Snippet Generator

> Orbonomy Content Snippet Generator is a paid API for AI agents from main.orbonomy.xyz, paid per call via x402, $0.1/call, status unknown (last checked 2026-09-13).

Generates a styled content snippet from input text using a specified style parameter

## Facts

- Endpoint: POST https://main.orbonomy.xyz/api/content/snippet
- Price: $0.1/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/orbonomy-content-snippet-generator-4feda235
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_v55WEt8iOw2Z0H6adfEFe

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 orbonomy-content-snippet-generator-4feda235 -d '<json body>'
```

Example prompt: Turn this product description into a punchy, casual-style content snippet: 'Our new wireless earbuds deliver 30 hours of battery life and noise-cancelling sound.'

## When to prefer this

Choose this endpoint when you need to quickly reformat or restyle a piece of text into a specific editorial tone or style, especially within a pay-per-call, no-subscription context. Suitable for lightweight content transformation tasks where you have a defined style to apply to a short input text.

## Known failure modes

- Missing required 'text' field returns validation error
- Missing required 'style' field returns validation error
- Unsupported style value may return error or unexpected output
- Empty text input may result in empty or minimal snippet
- Payment failure via x402 protocol returns 402 Payment Required
- Server errors return 500 with no content snippet

## How this service works

50+ pay-per-call API endpoints across accommodation, AI, content, fact-checking, and data services. Powered by x402 protocol.

## Output

Returns a JSON object with a success boolean indicating whether the snippet was generated; the styled content snippet derived from the input text and style parameter is included in the response payload.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "text",
  "style"
 ],
 "properties": {
  "text": {
   "type": "string"
  },
  "style": {
   "type": "string"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "success": {
   "type": "boolean"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/orbonomy-content-snippet-generator-4feda235/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from main.orbonomy.xyz](https://www.zero.xyz/host/main.orbonomy.xyz/llms.txt)
