# Orbonomy LLM Batch Processing

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

Processes multiple LLM prompts in a single batch call with a shared system prompt, returning results for each item

## Facts

- Endpoint: POST https://orbonomy.xyz/api/llm/batch
- Price: $0.1/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-batch-processing-c39b257a
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_6OwUD86xDi9fDf0I_6k6j

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-batch-processing-c39b257a -d '<json body>'
```

Example prompt: Can you run this system prompt — 'You are a helpful summarizer. Summarize each item in one sentence.' — against all three of these articles at once using Orbonomy's batch LLM endpoint?

## When to prefer this

Choose this endpoint when you need to run the same system prompt context across multiple inputs in a single API call, reducing round-trips. Prefer it over single-call LLM endpoints when processing arrays of items for efficiency and cost-effectiveness under the x402 pay-per-call model.

## Known failure modes

- Missing required 'items' array returns validation error
- Missing required 'system_prompt' returns validation error
- Empty items array may return success:false
- Payment failure via x402 protocol returns 402 status
- Malformed request body returns 400 error
- Individual item processing failures may cause partial results or overall failure

## 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 indicating whether the batch was processed, along with results for each item in the submitted array processed against the provided system prompt.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "items",
  "system_prompt"
 ],
 "properties": {
  "items": {
   "type": "array"
  },
  "system_prompt": {
   "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-batch-processing-c39b257a/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)
