# Orbonomy Content Snippet Generator

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

Generates or transforms a styled content snippet from input text using a specified style

## Facts

- Endpoint: POST https://www.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-2e4c89ee
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_Ln3oe0ZdsauteubpZI59S

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-2e4c89ee -d '<json body>'
```

Example prompt: Can you turn this into a polished professional-style content snippet: 'Our new product launches next week and we're excited to share it with the world'?

## When to prefer this

Choose this endpoint when you need to quickly reformat or stylize a piece of text into a publishable content snippet with a specific tone or style, especially in a pay-per-call workflow using the x402 protocol. Prefer this over general LLM completions when you want a structured, consistent snippet-generation service without managing your own model.

## Known failure modes

- Missing required 'text' field returns 400 validation error
- Missing required 'style' field returns 400 validation error
- Unrecognized style value may return an error or fallback output
- Payment not processed (x402) results in 402 Payment Required before content is returned
- Empty or too-short text may yield low-quality or empty snippet
- Rate limiting or server errors may return 5xx responses

## 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 styled snippet was generated successfully, and likely the resulting snippet text.

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