# Orbonomy LLM Analyze

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

Sends a prompt to an LLM and returns an AI-generated analysis response via pay-per-call API

## Facts

- Endpoint: POST https://main.orbonomy.xyz/api/llm/analyze
- Price: $0.1/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-analyze-e0da638f
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_IO7V-ugymHJZNDAquiX_f

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

Example prompt: Can you use Orbonomy's LLM analyze endpoint to process this prompt: 'Summarize the key risks in the following contract clause: The vendor reserves the right to modify pricing without notice.'

## When to prefer this

Choose this endpoint when you need a lightweight, pay-per-call LLM analysis without committing to a subscription, especially within the x402 micropayment ecosystem. Useful for agents that want to offload text analysis to an AI model on-demand without managing API keys for major LLM providers directly.

## Known failure modes

- Missing required 'prompt' field returns validation error
- Payment not provided or insufficient USDC causes 402 Payment Required response
- LLM backend unavailable returns 500 or timeout
- Malformed JSON body returns 400 Bad Request
- Prompt too long or exceeds token limits may result in truncation or error

## 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 analysis or response 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-analyze-e0da638f/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)
