# Orbonomy LLM Chat

> Orbonomy LLM Chat is a paid API for AI agents from api.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://api.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-560e52d6
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap__eLgNkX6FrFbH8WvjstHL

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

Example prompt: Can you send the following conversation to the Orbonomy LLM chat endpoint and get a reply — messages: [{role: user, content: 'What is the capital of France?'}], with a max of 200 tokens?

## When to prefer this

Choose this endpoint when you need LLM chat completions on a pay-per-call basis without a subscription, especially when operating in an x402-enabled micropayment environment or when integrating AI chat into an agent that handles its own USDC payments.

## Known failure modes

- Missing required fields (messages or max_tokens) returns a validation error
- Payment failure via x402 protocol results in a 402 Payment Required response
- Exceeding model token limits may cause truncation or error
- Malformed messages array structure may result in a 400 Bad Request
- Service unavailability or upstream LLM provider outage returns a 5xx error

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

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