# Omnicall Ultra AI Gateway

> Omnicall Ultra AI Gateway is a paid API for AI agents from omnicall.gocreativeai.com, paid per call via x402, $0.25/call, status unknown (last checked 2026-09-14).

Routes a single POST call to 247+ LLMs, image/video/voice/music generation, live crypto/DeFi data, web search, and on-chain reads via one OpenAI-compatible endpoint, paid per call in USDC.

## Facts

- Endpoint: GET https://omnicall.gocreativeai.com/v1/ai/ultra/%7Barg%7D
- Price: $0.25/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/omnicall-ultra-ai-gateway-12b07290
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_4O8HLaKWlBG0pkLlpoz1b

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 omnicall-ultra-ai-gateway-12b07290
```

Example prompt: Use Omnicall to generate a photorealistic image of a futuristic city at sunset — pay per call in USDC, no API key needed.

## When to prefer this

Choose Omnicall when your agent needs access to multiple AI modalities (LLMs, image, video, voice, crypto data, web search) without maintaining separate API keys and billing relationships for each provider. Ideal for pay-per-call, crypto-native agent workflows on Base or Solana where USDC micropayments are preferable to monthly subscriptions. Best suited when you want OpenAI-compatible request formatting across all these capabilities through a single endpoint.

## Known failure modes

- Insufficient USDC balance or failed x402 payment results in 402 Payment Required
- Invalid or unsupported model/task type in the {arg} path segment returns a 400 or 404 error
- Malformed request body (non-OpenAI-compatible schema) causes a 422 Unprocessable Entity
- Underlying model or data provider timeout causes a 504 or partial response
- Rate limiting or quota exceeded on a specific sub-provider returns a 429
- Crypto/on-chain data unavailable for a requested asset or contract returns empty or error payload

## How this service works

Omnicall is the all-in-one agent gateway: 247 LLMs plus image, video, voice & music generation, live crypto/DeFi/prediction-market data, web search and on-chain reads — one OpenAI-compatible endpoint, pay per call in USDC on Base or Solana, no API key.

## Output

The agent receives a response formatted in OpenAI-compatible JSON containing the output of the requested AI task: text from an LLM, a URL or binary for generated media (image/video/audio/music), live crypto or DeFi data, or web/on-chain query results, depending on the route argument passed.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET",
      "HEAD",
      "DELETE"
     ],
     "type": "string"
    },
    "pathParams": {
     "type": "object"
    },
    "queryParams": {
     "type": "object",
     "required": [
      "input"
     ],
     "properties": {
      "input": {
       "type": "string",
       "description": "endpoint argument"
      }
     }
    }
   },
   "additionalProperties": false
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/omnicall-ultra-ai-gateway-12b07290/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from omnicall.gocreativeai.com](https://www.zero.xyz/host/omnicall.gocreativeai.com/llms.txt)
