# Orbonomy LLM Generate

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

Generates structured LLM output in a specified format given a prompt and a JSON schema defining the desired response shape

## Facts

- Endpoint: POST https://backup-v2api.orbonomy.xyz/api/llm/generate
- Price: $0.05/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-generate-3838ad11
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_Ec-20Ts_HXODGdN5y78uj

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-generate-3838ad11 -d '<json body>'
```

Example prompt: Generate a structured JSON response using the Orbonomy LLM endpoint: given the prompt 'Describe a fictional coffee shop', output in 'json' format conforming to this schema: {"name":{"type":"string"},"vibe":{"type":"string"},"specialDrink":{"type":"string"}}.

## When to prefer this

Choose this endpoint when you need pay-per-call LLM-based structured generation without a subscription, especially when you want the response to conform to a specific JSON schema. It is well-suited for agents that need ad-hoc AI generation with micropayment billing via the x402 protocol and want schema-validated output.

## Known failure modes

- Missing required fields (format, prompt, or schema) returns a 4xx validation error
- Payment not fulfilled via x402 protocol results in a 402 Payment Required response
- Malformed schema object causes generation failure or unexpected output
- LLM inference timeout or upstream model unavailability returns a 5xx error
- Schema too complex or contradictory may result in non-conforming output

## 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 and, on success, an AI-generated response conforming to the provided schema, shaped according to the requested format and the natural language prompt.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "format",
  "prompt",
  "schema"
 ],
 "properties": {
  "format": {
   "type": "string"
  },
  "prompt": {
   "type": "string"
  },
  "schema": {
   "type": "object"
  }
 }
}
```

## 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-generate-3838ad11/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)
