# Orbonomy LLM Pipeline

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

Executes a multi-step LLM pipeline where an initial text input flows through a sequence of AI processing steps, returning a success result

## Facts

- Endpoint: POST https://api.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-55ffd613
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_WGpN4cFTXcqWPDv50Z13k

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-55ffd613 -d '<json body>'
```

Example prompt: Run my text 'Summarize the key risks of investing in crypto' through a two-step Orbonomy LLM pipeline: first expand the topic into bullet points, then rewrite it as a concise executive summary.

## When to prefer this

Choose this endpoint when you need to chain multiple LLM transformations on a text input in a single API call rather than making separate calls for each step. Ideal for complex AI workflows where output of one step feeds into the next, and when pay-per-call micropayment via x402 is acceptable.

## Known failure modes

- Missing required 'steps' array returns validation error
- Missing 'initial_input' string returns validation error
- Empty steps array may produce no transformation
- Malformed step definitions may cause pipeline to fail mid-execution
- Payment failure via x402 protocol returns 402 status
- Timeout if pipeline steps are too numerous or complex

## 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 with a 'success' boolean indicating whether the pipeline executed successfully, along with any pipeline output produced by the sequential LLM steps.

## 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-55ffd613/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)
