# Orbonomy LLM Batch Processing API

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

Processes multiple LLM prompts in a single batch request using a shared system prompt via the Orbonomy unified API platform

## Facts

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

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-api-a5a44be5 -d '<json body>'
```

Example prompt: Run this system prompt 'You are a helpful summarizer. Summarize each item concisely.' against these three texts in batch: 'The history of Rome...', 'Climate change overview...', and 'Quantum computing basics...' using Orbonomy's LLM batch endpoint.

## When to prefer this

Choose this endpoint when you need to process multiple LLM prompts simultaneously under a single shared system prompt, reducing round-trip overhead compared to sequential single calls. Ideal for bulk text generation, batch summarization, or parallel AI inference tasks on a list of inputs, especially when using pay-per-call x402 micropayment billing.

## Known failure modes

- Missing required 'items' array returns validation error
- Missing required 'system_prompt' field returns 400 error
- Empty items array may return success:false
- Payment failure via x402 protocol returns 402 Payment Required
- Oversized batch may timeout or return server error
- Malformed item objects in array may cause partial or full 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 boolean 'success' field indicating whether the batch LLM processing completed successfully, along with the generated responses for each item in the input array processed under the shared 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-api-a5a44be5/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)
