# Orbonomy LLM Generate

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

Generates structured LLM output from a prompt, returning results conforming to a caller-supplied JSON schema

## Facts

- Endpoint: POST https://orbonomy.xyz/api/llm/generate
- Price: $0.05/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 1
- Tags: x402
- Canonical page: https://www.zero.xyz/c/orbonomy-llm-generate-aa130e7f
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_Vb0N3ee0NkiekD1ahmYzL

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

Example prompt: Generate a structured JSON response using Orbonomy's LLM endpoint: given the prompt 'Summarize the key benefits of renewable energy in three points', output in 'json' format and conform to this schema: {"summary": {"type": "array", "items": {"type": "string"}}}

## When to prefer this

Choose this endpoint when you need a pay-per-call LLM generation API that returns output conforming to a custom JSON schema you define, without committing to a subscription; ideal for agents that need structured AI-generated data on demand and want to pay per use via USDC

## Known failure modes

- Missing required fields (format, prompt, or schema) returns a validation error
- Invalid JSON schema in the schema field causes a parsing failure
- Payment failure via x402 protocol results in 402 response before processing
- LLM generation timeout or upstream model error returns a failed success flag
- Malformed prompt or unsupported format string may produce empty or error response

## 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 presumably the LLM-generated content structured according to the caller-provided schema; the response conforms to the schema passed in the request

## Example request

```json
{
 "format": "json",
 "prompt": "List three key features of cloud computing technology",
 "schema": {
  "type": "object",
  "required": [
   "features"
  ],
  "properties": {
   "features": {
    "type": "array",
    "items": {
     "type": "string",
     "description": "A cloud computing feature"
    }
   }
  }
 }
}
```

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