# OpenVerbs Crypto Token Price Lookup

> OpenVerbs Crypto Token Price Lookup is a paid API for AI agents from crypto.openverbs.com, paid per call via x402, $0.001/call, status unknown (last checked 2026-09-14).

Returns current USD prices for one or more tokens identified by CoinGecko slug or on-chain contract address, with unrecognized IDs flagged in `notFound`.

## Facts

- Endpoint: POST https://crypto.openverbs.com/v1/price
- Price: $0.001/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/openverbs-crypto-token-price-lookup-db530ed5
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_gLhJm1DvSt9o0BF-oCvwp

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 openverbs-crypto-token-price-lookup-db530ed5 -d '<json body>'
```

Example prompt: What are the current USD prices for Bitcoin, Ethereum, and the USDT stablecoin on Ethereum (contract 0xdAC17F958D2ee523a2206206994597C13D831ec7)?

## When to prefer this

Choose this endpoint when you need current spot USD prices for one or more tokens in a single call, especially when you have a mix of CoinGecko-listed coins and EVM on-chain token addresses. It is ideal for portfolio valuation, real-time dashboards, or enriching transaction data with current prices. For historical price data, use the sibling historical price endpoint instead.

## Known failure modes

- Unknown coin IDs returned in `notFound` array rather than causing an error
- Malformed coin ID format (e.g. missing chain prefix) results in the ID being placed in `notFound`
- Exceeding 50 coins per request returns a validation error
- Network or upstream data provider outage may return a 5xx error
- Payment failure or insufficient balance returns a 402 Payment Required

## How this service works

Crypto prices: current USD spot price for one or more tokens/coins by coin id (e.g. "coingecko:bitcoin", "coingecko:ethereum", or "ethereum:0xdAC17..."). Real-time bitcoin, ethereum and ERC-20 token price feed from an open, redistribution-OK source. Unknown ids are returned in `notFound`.

## Output

A map of each recognized coin ID to its current USD price, plus a `notFound` array listing any coin IDs that could not be resolved.

## Request schema (JSON Schema)

```json
{
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "type": "object",
 "properties": {
  "input": {
   "type": "object",
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "type": "string",
     "enum": [
      "POST"
     ]
    },
    "bodyType": {
     "type": "string",
     "enum": [
      "json",
      "form-data",
      "text"
     ]
    },
    "body": {
     "type": "object",
     "properties": {
      "coins": {
       "type": "array",
       "minItems": 1,
       "maxItems": 50,
       "items": {
        "type": "string"
       },
       "description": "Coin ids: \"coingecko:{slug}\" (e.g. \"coingecko:bitcoin\", \"coingecko:ethereum\") or \"{chain}:{tokenAddress}\" (e.g. \"ethereum:0xdAC17F958D2ee523a2206206994597C13D831ec7\")."
      }
     },
     "required": [
      "coins"
     ],
     "additionalProperties": false
    }
   },
   "required": [
    "type",
    "method",
    "bodyType",
    "body"
   ],
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   },
   "required": [
    "type"
   ]
  }
 },
 "required": [
  "input"
 ]
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "stale": false,
  "prices": [
   {
    "coin": "coingecko:bitcoin",
    "price": 79136.16,
    "symbol": "BTC",
    "decimals": null,
    "timestamp": 1788803330,
    "confidence": 0.99
   }
  ],
  "source": "defillama",
  "notFound": []
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/openverbs-crypto-token-price-lookup-db530ed5/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from crypto.openverbs.com](https://www.zero.xyz/host/crypto.openverbs.com/llms.txt)
