# Omnicall Pro AI Completion (Claude/GPT/Gemini)

> Omnicall Pro AI Completion (Claude/GPT/Gemini) is a paid API for AI agents from omnicall.gocreativeai.com, paid per call via x402, $0.08/call, status unknown (last checked 2026-09-13).

Returns frontier LLM text completions from Claude 4.5 Sonnet, GPT-5, GPT-4o, or Gemini Pro via a single keyless pay-per-call endpoint.

## Facts

- Endpoint: GET https://omnicall.gocreativeai.com/v1/ai/pro/:var1
- Price: $0.08/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/omnicall-pro-ai-completion-claude-gpt-gemini-5f2c8aa1
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_sjmlvQ6xvjjDAyLoQcbZZ

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-pro-ai-completion-claude-gpt-gemini-5f2c8aa1
```

Example prompt: Use the Omnicall Pro endpoint to analyze this contract clause and summarize the key risks — use Claude 4.5 Sonnet: 'The licensor may terminate this agreement with 30 days notice for any reason, with no liability to licensee.'

## When to prefer this

Choose this endpoint when an agent needs a one-off, high-quality completion from a frontier model (Claude 4.5 Sonnet, GPT-5, GPT-4o, or Gemini Pro) without managing API keys or subscriptions. Ideal for tasks requiring advanced reasoning, complex synthesis, or polished drafting billed per-call in USDC on Base or Solana. Prefer over dedicated provider SDKs when keyless, pay-as-you-go access across multiple top-tier models from a single gateway is more convenient.

## Known failure modes

- 402 Payment Required — USDC payment on Base or Solana not attached or insufficient
- Invalid model param — unrecognized ?model value returns an error
- Empty or missing ?input query param — returns 400 bad request
- Model provider outage — upstream Claude/GPT/Gemini service unavailable, returns 503
- Prompt too long — exceeds model context window, returns 413 or truncation error

## How this service works

AI completion, frontier tier — Claude 4.5 Sonnet (default; ?model=gpt-5|gpt-4o|gemini-pro|gemini-3.1-pro). Pay USDC per call, no API key, no signup. For agents that need a frontier model on hard analysis, synthesis, and drafting. See GET /v1/ai/models for the full menu.

## Output

A text completion from the selected frontier model (Claude 4.5 Sonnet by default, or GPT-5, GPT-4o, Gemini-Pro, Gemini-3.1-Pro via ?model param) responding to the provided input prompt. The response contains the model-generated text as the completion payload.

## 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-pro-ai-completion-claude-gpt-gemini-5f2c8aa1/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)
