# Orbonomy LLM Chat

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

Send a conversational message array to an LLM and receive a chat completion response, billed per-call via x402 micropayments.

## Facts

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

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

Example prompt: Chat with Orbonomy's LLM endpoint: send the message 'Explain quantum entanglement in simple terms' with a max of 300 tokens and return the AI's reply.

## 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 micropayment context. Ideal for agents that want to avoid monthly API commitments and pay only for what they use in USDC.

## Known failure modes

- Payment not included or insufficient — 402 Payment Required response
- Missing required 'messages' field — 400 Bad Request
- Missing required 'max_tokens' field — 400 Bad Request
- messages array malformed or empty — validation error
- Model unavailable or overloaded — 503 or timeout
- x402 payment protocol handshake failure — payment not processed

## 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 'success' boolean and the LLM's generated chat response to the provided message array, returned after a $0.05 USDC per-call payment via x402 protocol.

## 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-e0145f7c/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)
