# Orbonomy LLM Search

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

Performs an AI-powered LLM search query via Orbonomy's unified pay-per-call API platform

## Facts

- Endpoint: POST https://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-ae8586fd
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_A0e4GdPvFkxVvEh1gnZAs

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

Example prompt: Search for the latest research on quantum computing breakthroughs using Orbonomy's LLM search — the 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 AI language model search without a subscription, especially if you are already using x402 micropayment infrastructure and want access to Orbonomy's broader suite of AI and data endpoints under one platform

## Known failure modes

- Payment not provided or insufficient — x402 payment required for each call
- Prompt field missing — returns validation error as prompt is required
- Invalid JSON body — request fails with 400-level error
- LLM provider unavailable — may return 500-level error or empty result
- Prompt too long or malformed — may be rejected by underlying model

## 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 AI-generated search result or answer corresponding to the submitted prompt

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