# Orbonomy LLM Pipeline

> Orbonomy LLM Pipeline is a paid API for AI agents from main.orbonomy.xyz, paid per call via x402, $0.15/call, status unknown (last checked 2026-09-14).

Executes a multi-step LLM pipeline by chaining processing steps against an initial text input, returning a success indicator and pipeline results.

## Facts

- Endpoint: POST https://main.orbonomy.xyz/api/llm/pipeline
- Price: $0.15/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/orbonomy-llm-pipeline-c8f79d4f
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_JzThYSotnlqAgfzQkCX23

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-llm-pipeline-c8f79d4f -d '<json body>'
```

Example prompt: Run this text through a two-step AI pipeline: first summarize it, then classify the sentiment — here's the input: 'Despite initial delays, the product launch exceeded all quarterly targets and customer satisfaction scores reached a record high.'

## When to prefer this

Choose this endpoint when you need to chain multiple LLM operations sequentially against a single text input and want a single pay-per-call API rather than managing multiple separate AI API calls. Ideal for multi-stage text workflows like summarize-then-classify or extract-then-rewrite.

## Known failure modes

- Missing required 'steps' array returns validation error
- Empty or malformed 'initial_input' string causes pipeline failure
- Invalid step configuration in the steps array causes processing error
- Payment not authorized via x402 protocol results in 402 response
- Pipeline timeout if steps are too complex or numerous

## How this service works

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

## Output

A JSON object containing a boolean 'success' field indicating whether the pipeline completed, along with any output produced by the final step in the chained LLM workflow.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "steps",
  "initial_input"
 ],
 "properties": {
  "steps": {
   "type": "array"
  },
  "initial_input": {
   "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-llm-pipeline-c8f79d4f/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)
