# Orbonomy LLM Pipeline

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

Executes a multi-step LLM pipeline by chaining AI processing steps against an initial text input

## Facts

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

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-9716ba5f -d '<json body>'
```

Example prompt: Run this text through a two-step Orbonomy LLM pipeline — first summarize it, then extract the key action items: 'Our Q3 planning meeting covered budget approvals, hiring targets, and the product roadmap for the next two quarters.'

## When to prefer this

Use this endpoint when you need to chain multiple AI/LLM operations sequentially on a piece of text in a single pay-per-call API request, rather than managing individual LLM calls yourself. Best suited for multi-stage text transformations like summarize-then-classify, extract-then-rewrite, or any sequential NLP workflow.

## Known failure modes

- Empty or malformed steps array returns validation error
- Missing initial_input field causes a 400 bad request
- Invalid step configuration causes pipeline execution failure
- Payment not provided or insufficient funds returns 402 Payment Required
- Downstream LLM service unavailability causes pipeline timeout or 503

## 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 the output produced after all pipeline steps have been applied to the initial input text.

## 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-9716ba5f/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)
