# Omnicall LLM Gateway — OpenAI-compatible Multi-Model Router

> Omnicall LLM Gateway — OpenAI-compatible Multi-Model Router is a paid API for AI agents from gateway.gocreativeai.com, paid per call via x402, $0.003/call, status down (last checked 2026-09-15).

Routes requests to 240+ frontier LLMs (GPT, Claude, Gemini, Grok, DeepSeek, Llama, Qwen) via a single OpenAI-compatible endpoint, billed per call in USDC with no API key required

## Facts

- Endpoint: GET https://gateway.gocreativeai.com/v1/dex/%7Barg%7D
- Price: $0.003/call
- Payment: x402
- Status: down
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/omnicall-llm-gateway-openai-compatible-multi-model-router-0da8c1fe
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_owHUuQH460DyKKaTXrZxB

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-llm-gateway-openai-compatible-multi-model-router-0da8c1fe
```

Example prompt: Send this message to Claude 3.5 Sonnet through Omnicall: 'Summarize the key differences between transformer and mamba architectures in 3 bullet points' — pay per call with USDC, no API key needed.

## When to prefer this

Prefer this endpoint when an agent needs to access multiple different LLM providers without managing separate API keys and subscriptions, or when operating in a crypto-native environment where paying in USDC per call is preferable to monthly billing. Ideal for autonomous agents that need on-demand LLM access with no pre-registration, no rate limits, and OpenAI SDK compatibility so no code changes are needed.

## Known failure modes

- Insufficient USDC balance — payment rejected, 402 Payment Required
- Invalid or unsupported model name in the {arg} path parameter — 400 Bad Request
- Malformed messages array or missing required fields — 422 Unprocessable Entity
- Upstream model provider outage — 503 Service Unavailable
- Request timeout for slow models or very long completions — 504 Gateway Timeout

## How this service works

Omnicall routes 240+ frontier models (GPT, Claude, Gemini, Grok, DeepSeek, Llama, Qwen) through one OpenAI-compatible endpoint. Pay per call in USDC on Base or Solana — no API key, no subscription, no rate limits.

## Output

Returns an OpenAI-compatible chat completion response JSON containing the model's generated text, finish reason, and token usage counts (prompt tokens, completion tokens, total tokens), identical in structure to the OpenAI /v1/chat/completions response format.

## 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-llm-gateway-openai-compatible-multi-model-router-0da8c1fe/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from gateway.gocreativeai.com](https://www.zero.xyz/host/gateway.gocreativeai.com/llms.txt)
