# Orbonomy LLM Pipeline

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

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

## Facts

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

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-3b3febb3 -d '<json body>'
```

Example prompt: Run a two-step Orbonomy LLM pipeline on this text: first summarize it, then extract the top 3 key entities — starting input is 'Artificial intelligence is transforming healthcare by enabling faster diagnostics and personalized treatment plans.'

## When to prefer this

Choose this endpoint when you need to chain multiple LLM or AI processing steps sequentially in a single pay-per-call API request, rather than managing orchestration yourself across multiple API calls. Best when you want a unified pipeline abstraction backed by Orbonomy's 50+ service catalog.

## Known failure modes

- Missing required 'steps' array returns validation error
- Missing 'initial_input' string returns 400 or failure response
- Malformed steps definition causes pipeline execution failure
- Payment not included or insufficient results in 402 Payment Required
- Downstream AI service unavailable causes pipeline to fail mid-step
- Empty steps array may return success:false or 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 final output of the chained pipeline steps 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-3b3febb3/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from orbonomy.xyz](https://www.zero.xyz/host/orbonomy.xyz/llms.txt)
