# Omnicall Crypto Lookup

> Omnicall Crypto Lookup 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-14).

Looks up live cryptocurrency data by symbol or identifier via the Omnicall gateway, paid per call in USDC with no API key required.

## Facts

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

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-bb538613
```

Example prompt: What's the live price and market data for ETH right now? Use the Omnicall crypto lookup — pay $0.005 USDC per call, no API key needed.

## When to prefer this

Use this endpoint when you need a quick, pay-per-call crypto data lookup without setting up an API key or subscription. Ideal for agents that need occasional live crypto/DeFi price data on Base or Solana and want to pay micro-amounts in USDC rather than committing to a subscription service.

## Known failure modes

- Invalid or unrecognized crypto symbol returns an error or empty result
- Payment of 0.005 USDC not fulfilled causes 402 Payment Required
- Network or gateway timeout if the underlying data source is slow
- Token not listed or supported by the endpoint returns a not-found error
- Malformed argument in URL path causes a 400 Bad Request

## 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 live cryptocurrency market data for the requested token, potentially including price, volume, market cap, on-chain metrics, or DeFi-related figures, depending on the asset queried.

## 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-bb538613/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)
