# Orbonomy LLM Think — AI Reasoning Endpoint

> Orbonomy LLM Think — AI Reasoning Endpoint is a paid API for AI agents from main.orbonomy.xyz, paid per call via x402, $0.05/call, status unknown (last checked 2026-09-15).

Sends a text prompt to an LLM reasoning engine and returns a generated response or analysis

## Facts

- Endpoint: POST https://main.orbonomy.xyz/api/llm/think
- Price: $0.05/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/orbonomy-llm-think-ai-reasoning-endpoint-2522c10b
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_NB6sMMh75DjSIj22psKNL

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-think-ai-reasoning-endpoint-2522c10b -d '<json body>'
```

Example prompt: Think through this for me and give me your best reasoning: 'What are the key trade-offs between microservices and monolithic architectures for a startup with a small engineering team?'

## When to prefer this

Choose this endpoint when you need a pay-per-call LLM reasoning capability without a subscription, billed in USDC via x402 protocol. Useful for agents that need occasional AI text generation or reasoning without committing to a full LLM provider account.

## Known failure modes

- Missing required 'text' field returns a validation error
- Payment not included or invalid x402 payment results in 402 Payment Required
- Empty or malformed text input may return a low-quality or error response
- Service downtime returns 5xx errors
- Rate limiting or quota exceeded may return 429

## 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 success boolean and the LLM-generated reasoning or response text based on the submitted text prompt.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "text"
 ],
 "properties": {
  "text": {
   "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-think-ai-reasoning-endpoint-2522c10b/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from main.orbonomy.xyz](https://www.zero.xyz/host/main.orbonomy.xyz/llms.txt)
