# HyperD Token Info (CoinGecko + DefiLlama)

> HyperD Token Info (CoinGecko + DefiLlama) is a paid API for AI agents from api.hyperd.ai, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-15).

Returns aggregated token metadata including market cap, supply, contract addresses across chains, and recent trading volume by combining CoinGecko and DefiLlama data.

## Facts

- Endpoint: POST https://api.hyperd.ai/api/token/info
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/api-hyperd-ai-371282b2
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_JNYiScWrrBuCR5sSyjYtJ

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 api-hyperd-ai-371282b2 -d '<json body>'
```

Example prompt: What's the market cap, circulating supply, and contract addresses across all chains for WBTC? Look it up using the query 'wrapped bitcoin' on Ethereum.

## When to prefer this

Use this endpoint when you need comprehensive, multi-source token metadata in a single call — especially when you need both market data (CoinGecko) and on-chain DeFi data (DefiLlama) aggregated together. Prefer this over raw CoinGecko or DefiLlama APIs when you need cross-chain contract address mapping alongside market cap and volume in one response.

## Known failure modes

- Token not found by query or contract address — returns empty or 404-like response
- Unsupported or misspelled chain identifier — may return no chain-specific data
- Rate limiting or payment failure (x402) — returns 402 Payment Required
- Token exists but has no DefiLlama or CoinGecko coverage — partial data returned
- Ambiguous token symbol matching multiple tokens — may return wrong token

## Output

A structured JSON object with aggregated token metadata: market capitalization, total and circulating supply, contract addresses per chain, and recent trading volume — sourced from CoinGecko and DefiLlama.

## Example request

```json
{
 "input": {
  "type": "http",
  "method": "GET",
  "queryParams": {
   "chain": "ethereum",
   "query": "ethereum"
  }
 }
}
```

## 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"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "properties": {
      "chain": {
       "type": "string"
      },
      "query": {
       "type": "string"
      },
      "contract": {
       "type": "string"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/api-hyperd-ai-371282b2/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.hyperd.ai](https://www.zero.xyz/host/api.hyperd.ai/llms.txt)
