# Omnicall Crypto Lookup via LLM Gateway

> Omnicall Crypto Lookup via LLM Gateway is a paid API for AI agents from gateway.gocreativeai.com, paid per call via x402, $0.005/call, status down (last checked 2026-09-15).

Performs a cryptocurrency lookup using a path argument via the Omnicall OpenAI-compatible LLM gateway, paid per call in USDC with no API key required.

## Facts

- Endpoint: GET https://gateway.gocreativeai.com/v1/lookup/crypto/%7Barg%7D
- Price: $0.005/call
- Payment: x402
- Status: down
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/omnicall-crypto-lookup-via-llm-gateway-0b6ccdaa
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_QX5Qrm5Ua3xQCzcUEjDzs

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-crypto-lookup-via-llm-gateway-0b6ccdaa
```

Example prompt: Look up the crypto asset 'ETH' using the Omnicall gateway and pay $0.005 USDC from my Base wallet — no API key needed, just give me the result.

## When to prefer this

Choose this endpoint when you need per-call, subscription-free, API-key-free access to crypto lookup data and are willing to pay micro-amounts in USDC on Base or Solana. Ideal for autonomous agents that need occasional on-demand crypto data without managing credentials or subscriptions.

## Known failure modes

- Payment not received or insufficient USDC — 402 Payment Required
- Invalid or unrecognized crypto symbol in path — 400 or empty result
- Network congestion on Base or Solana causing payment delay
- Gateway upstream model unavailable — 503 or timeout
- Malformed path argument — 400 Bad Request

## 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 a lookup result for the specified cryptocurrency argument, processed through the Omnicall LLM gateway. The response follows OpenAI-compatible formatting and contains whatever data the gateway surfaces for the given crypto identifier.

## 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-crypto-lookup-via-llm-gateway-0b6ccdaa/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)
