# Orbonomy LLM Analyze

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

Sends a text prompt to an LLM analysis endpoint and returns a structured success response with AI-generated analysis

## Facts

- Endpoint: POST https://app.orbonomy.xyz/api/llm/analyze
- Price: $0.1/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-16
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/orbonomy-llm-analyze-1b13bd77
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_EKZWq6tp3vorm2aknD67g

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

Example prompt: Can you analyze this customer feedback using Orbonomy's LLM endpoint and tell me what the key themes are: 'The onboarding was confusing but the product itself is excellent once you get past it'?

## When to prefer this

Choose this endpoint when you need a pay-per-call LLM analysis without a subscription commitment, using the x402 micropayment protocol for direct USDC billing at $0.10 per call. Suitable for low-frequency or on-demand AI analysis tasks where a full LLM API subscription is unnecessary.

## Known failure modes

- Payment not provided or insufficient — 402 Payment Required
- Prompt field missing from request body — validation error
- LLM backend unavailable — service timeout or 503
- Malformed JSON request body — 400 Bad Request
- Rate limit exceeded — 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

Returns a JSON object with a 'success' boolean indicating whether the LLM analysis completed, along with the AI-generated analysis result for 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-1b13bd77/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)
