# Orbonomy LLM Analyze

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

Sends a text prompt to an LLM and returns an AI-generated analysis response

## Facts

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

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

Example prompt: Can you use the Orbonomy LLM analyze endpoint to analyze the following text and tell me the key themes and sentiment: 'Our product launch went smoothly but customer onboarding still has friction points that need addressing'?

## When to prefer this

Choose this endpoint when you need a pay-per-call LLM analysis without a subscription commitment, particularly when integrated into x402-compatible micropayment workflows on the Orbonomy platform. Useful for agents that need on-demand AI text analysis billed per invocation in USDC.

## Known failure modes

- Missing required 'prompt' field returns a 400 validation error
- Payment not provided or insufficient USDC triggers a 402 Payment Required response
- Empty or malformed prompt may return a failed success:false response
- LLM backend timeout may cause delayed or error responses
- Rate limiting or quota exceeded may block 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 request succeeded, along with 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-40ee9b9a/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.orbonomy.xyz](https://www.zero.xyz/host/api.orbonomy.xyz/llms.txt)
