# Orbonomy LLM Search

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

Sends a natural language prompt to an LLM-powered search endpoint and returns a generated response

## Facts

- Endpoint: POST https://app.orbonomy.xyz/api/llm/search
- 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-search-38d8aa94
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_KfDAdLnDFWvIzrNSrvrh5

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

Example prompt: Search for the latest information on quantum computing breakthroughs using the Orbonomy LLM search — my prompt is: 'What are the most significant quantum computing advances in 2024?'

## When to prefer this

Choose this endpoint when you need a pay-per-call LLM search without a subscription, want to query an AI with a natural language prompt via the x402 micropayment protocol, or are integrating AI search into an autonomous agent workflow that requires per-use billing.

## Known failure modes

- Payment not included or insufficient — 402 Payment Required
- Prompt field missing from request body — validation error
- LLM backend unavailable — 503 or timeout
- Malformed JSON body — 400 Bad Request
- Rate limit exceeded — 429 Too Many Requests

## 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 an LLM-generated text response answering the provided prompt, sourced from the Orbonomy unified API platform's AI search capability.

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