# Orbonomy Content Snippet Generator

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

Generates a styled text snippet from input text, applying a specified writing style

## Facts

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

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-86ffd41d -d '<json body>'
```

Example prompt: Can you turn this paragraph into a punchy, casual blog snippet? Here's the text: 'Our new product launches next month with advanced AI features and a sleek new design that sets it apart from the competition.' Style it as casual.

## When to prefer this

Use this endpoint when you need to quickly reformat or restyle a piece of text into a specific writing style as a short snippet, particularly when paying per-call via x402 protocol is acceptable and you want a managed API without infrastructure overhead.

## Known failure modes

- Missing required 'text' field returns validation error
- Missing required 'style' field returns validation error
- Unsupported style value may return error or default behavior
- Empty text string may return error
- Payment failure via x402 protocol results in 402 response before processing
- Rate limiting or quota exceeded returns 429 error

## 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 and presumably the generated styled snippet content derived from the input text formatted in the requested style

## 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-86ffd41d/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.orbonomy.xyz](https://www.zero.xyz/host/api.orbonomy.xyz/llms.txt)
