# Orbonomy LLM Analyze

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

Sends a prompt to an LLM analysis endpoint and returns a structured response indicating success

## Facts

- Endpoint: POST https://backup-v2api.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-518e54fc
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_DcFvewSO-cBPLCicP3dlF

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

Example prompt: Can you analyze the following text using the Orbonomy LLM endpoint and tell me what insights you get: 'Our Q3 sales declined 12% despite increased marketing spend, suggesting channel misalignment'?

## When to prefer this

Choose this endpoint when you need a lightweight, pay-per-call LLM analysis capability without a subscription, especially within the Orbonomy ecosystem where you are already using other Orbonomy services. Best suited for one-off or infrequent LLM calls where cost-per-call via USDC micropayments is preferable to monthly API commitments.

## Known failure modes

- Missing required 'prompt' field returns a validation error
- Payment not provided or insufficient USDC results in a 402 Payment Required response
- Prompt too long or malformed causes a 400 Bad Request
- Service unavailable or backend LLM timeout returns a 503 or 500 error
- success: false returned if LLM processing fails internally

## How this service works

50+ pay-per-call API endpoints across accommodation, AI, content, fact-checking, and data services. Powered by x402 protocol.

## Output

A JSON object with a 'success' boolean indicating whether the LLM analysis completed, likely accompanied by the analysis output from the language model.

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