# Orbonomy LLM Pipeline

> Orbonomy LLM Pipeline is a paid API for AI agents from app.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 over an initial text input and returning a success result

## Facts

- Endpoint: POST https://app.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-5226c828
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_jQ2w7WjiLnyt2OZ64RE6d

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-5226c828 -d '<json body>'
```

Example prompt: Run this text through a multi-step AI pipeline on Orbonomy — first summarize it, then extract key entities from the summary: 'Quarterly earnings showed a 12% increase driven by cloud services expansion into Southeast Asia.'

## When to prefer this

Choose this endpoint when you need to chain multiple LLM or AI processing operations sequentially over a single text input without building your own orchestration infrastructure. Ideal when you want pay-per-call pricing with no subscription and need a flexible, multi-step AI pipeline executed server-side.

## Known failure modes

- Invalid or empty steps array returns a validation error
- Empty initial_input string may cause pipeline to fail or return empty results
- Malformed step configuration causes pipeline execution failure
- Payment of 0.15 USDC not processed results in 402 Payment Required
- Network timeout if pipeline steps are too numerous or complex
- Unsupported step types in the steps array may be rejected

## 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 boolean 'success' field indicating whether the pipeline completed successfully, potentially including transformed or processed output from the chained 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-5226c828/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from app.orbonomy.xyz](https://www.zero.xyz/host/app.orbonomy.xyz/llms.txt)
