# Orbonomy LLM Chat

> Orbonomy LLM Chat is a paid API for AI agents from backup-v2api.orbonomy.xyz, paid per call via x402, $0.05/call, status unknown (last checked 2026-09-16).

Send a sequence of messages to a hosted LLM and receive a chat completion response, billed per call via x402.

## Facts

- Endpoint: POST https://backup-v2api.orbonomy.xyz/api/llm/chat
- Price: $0.05/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-16
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/orbonomy-llm-chat-7fb59789
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_QbV2izDVm2xyFVBTL-uYQ

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-chat-7fb59789 -d '<json body>'
```

Example prompt: Ask the Orbonomy LLM chat endpoint this: 'What are three creative names for a pet goldfish?' — send it as a user message and limit the response to 150 tokens.

## When to prefer this

Choose this endpoint when you need a pay-per-call LLM chat completion without a subscription, especially when operating in a crypto-native or x402-enabled payment environment and want to avoid committing to a recurring API key plan.

## Known failure modes

- Payment failure via x402 if USDC balance is insufficient
- Missing required fields (messages or max_tokens) returns a 400-level error
- Exceeding token limits or sending malformed messages array causes rejection
- Service unavailability on backup domain may result in connection errors
- Empty or null messages array may return an error or empty response

## 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 boolean 'success' field and the LLM-generated reply to the provided message thread, generated up to the specified max_tokens limit.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "messages",
  "max_tokens"
 ],
 "properties": {
  "messages": {
   "type": "array"
  },
  "max_tokens": {
   "type": "integer"
  }
 }
}
```

## 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-chat-7fb59789/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from backup-v2api.orbonomy.xyz](https://www.zero.xyz/host/backup-v2api.orbonomy.xyz/llms.txt)
