# Orbonomy LLM Chat

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

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

## Facts

- Endpoint: POST https://www.orbonomy.xyz/api/llm/chat
- Price: $0.05/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-chat-38e38cc4
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_Br-aXG5qoUxNzXOAal0DU

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

Example prompt: Ask the Orbonomy LLM chat endpoint: send these two messages — system: 'You are a helpful assistant', user: 'What are three tips for better sleep?' — with a max of 300 tokens and give me the response.

## When to prefer this

Choose this endpoint when you need a pay-per-call LLM chat completion without a subscription, especially in autonomous agent workflows where you want to pay per inference in USDC via the x402 protocol rather than managing API keys or monthly quotas.

## Known failure modes

- Payment not included or insufficient — 402 Payment Required response
- Missing required fields (messages or max_tokens) — 400 Bad Request
- max_tokens value too large or invalid — 422 Unprocessable Entity
- LLM provider unavailable — 503 or 500 error
- Empty messages array — validation error or unexpected model behavior

## 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 (implicitly) the LLM-generated chat completion text responding to the provided message sequence.

## 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-38e38cc4/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)
