# Omnicall AI Gateway — Eco Tier

> Omnicall AI Gateway — Eco Tier is a paid API for AI agents from omnicall.gocreativeai.com, paid per call via x402, $0.005/call, status unknown (last checked 2026-09-13).

Routes a single AI task (LLM, image/video/voice/music generation, crypto data, or web search) through an OpenAI-compatible endpoint with pay-per-call USDC billing and no API key required

## Facts

- Endpoint: GET https://omnicall.gocreativeai.com/v1/ai/eco/%7Barg%7D
- Price: $0.005/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/omnicall-ai-gateway-eco-tier-d52aa76a
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_oJGa3zNhHBDDy5v5cZgN6

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-ai-gateway-eco-tier-d52aa76a
```

Example prompt: Use Omnicall's eco endpoint to generate an image of a futuristic city at sunset — pay per call in USDC on Base, no API key needed.

## When to prefer this

Choose this endpoint when an AI agent needs to call any of 247 LLMs or generate media/audio/video without managing multiple API keys or subscriptions, and when micropayment billing in USDC on Base or Solana is acceptable. Ideal for autonomous agents that need broad AI capability access with no upfront credential setup.

## Known failure modes

- Insufficient USDC balance — payment fails before task executes
- Invalid or unsupported 'arg' route — returns 404 or bad request
- Model not available or overloaded — returns 503 or timeout
- Malformed request body — returns 400 validation error
- On-chain payment confirmation delay — request held pending settlement
- Rate limiting on eco tier — returns 429 too many requests

## 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

Returns an OpenAI-compatible response object containing the output of the requested AI task: text completion, generated media URL, live crypto/DeFi data, or web search results, depending on the 'arg' route specified.

## 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-ai-gateway-eco-tier-d52aa76a/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)
