# Orbonomy LLM Search

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

Runs a natural language prompt through an LLM-powered search endpoint on the Orbonomy platform

## Facts

- Endpoint: POST https://www.orbonomy.xyz/api/llm/search
- Price: $0.05/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/orbonomy-llm-search-d5159f97
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_Sl6olI_c5iIe4jcqg_Yzt

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

Example prompt: Search Orbonomy's LLM endpoint with the prompt: 'What are the top sustainable hotels in Copenhagen?' and return the AI-generated results.

## When to prefer this

Choose this endpoint when you need a pay-per-call, x402-enabled LLM search with no subscription overhead, especially when integrating AI-generated search into crypto-native or autonomous agent workflows.

## Known failure modes

- Missing required 'prompt' field returns a 400 validation error
- Payment failure via x402 protocol results in 402 response
- Prompt too long or malformed may yield a 422 error
- LLM backend timeout returns 503 or similar server error
- Empty prompt string may return a failed success:false response

## 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 boolean 'success' field and an LLM-generated response to the submitted prompt, covering the search or query intent provided.

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