# Orbonomy LLM Search

> Orbonomy LLM Search 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-14).

Accepts a natural language prompt and returns an AI-generated search or completion response via Orbonomy's unified LLM API endpoint

## Facts

- Endpoint: POST https://main.orbonomy.xyz/api/llm/search
- 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-search-e4b672f0
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_oqnuF34HL_ZOL-818FGsb

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

Example prompt: Can you use the Orbonomy LLM search endpoint to answer this question: 'What are the top three renewable energy trends in 2025?' and return the AI-generated response?

## When to prefer this

Choose this endpoint when you need a pay-per-call LLM query capability without a subscription, particularly when operating in a Web3/crypto-native environment using the x402 payment protocol and USDC micropayments. Suitable for occasional or low-volume LLM queries where a per-call pricing model is preferred over a monthly API plan.

## Known failure modes

- Missing required 'prompt' field returns a validation error
- Payment failure via x402 protocol results in 402 Payment Required response
- Empty or malformed prompt may return a low-quality or error response
- Network timeout if the LLM inference takes too long
- Insufficient USDC balance causes payment rejection before processing

## 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 field and presumably an AI-generated text response to the submitted prompt, delivered at $0.05 USDC per call via x402 micropayment protocol.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "prompt"
 ],
 "properties": {
  "prompt": {
   "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-search-e4b672f0/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)
