# CoinGecko Onchain DEX Token Price – HyperEVM Network

> CoinGecko Onchain DEX Token Price – HyperEVM Network is a paid API for AI agents from pro-api.coingecko.com, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-14).

Returns real-time DEX token price and market data for tokens on the HyperEVM network, queried by contract address.

## Facts

- Endpoint: GET https://pro-api.coingecko.com/api/v3/x402/onchain/simple/networks/hyperevm/token_price/probe
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/coingecko-onchain-dex-token-price-hyperevm-network-467f4f3c
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_cVKL1aPKjHNjMPdbt0d9P

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 coingecko-onchain-dex-token-price-hyperevm-network-467f4f3c
```

Example prompt: What's the current onchain DEX price, 24hr volume, and market cap for the HyperEVM token at contract address 0xABC123...? Pull the data from CoinGecko's onchain endpoint.

## When to prefer this

Choose this endpoint when you specifically need onchain DEX-sourced price data for tokens on the HyperEVM network, rather than centralized exchange prices. It is ideal when a token is only traded on DEXes, when you need reserve or liquidity data, or when you want price data tied directly to a smart contract address. Prefer it over CoinGecko's standard token endpoints when the token may not have a CoinGecko coin ID but does have a known contract address on HyperEVM.

## Known failure modes

- Invalid or unrecognized contract address returns empty or null price data
- Token not listed on any HyperEVM DEX returns no results
- Inactive token with no recent trades may return stale or missing data (unless include_inactive_source is enabled)
- Payment not received (x402 protocol failure) results in 402 error blocking response
- Rate limiting or API key issues return 429 or 401 errors

## How this service works

Query onchain DEX token price & market data based on the provided token contract addresses on a network.

## Output

Returns a JSON object containing the token's current USD price from onchain DEX sources, and optionally 24-hour trading volume, market capitalization, 24-hour price change percentage, total reserve in USD, and FDV fallback data — all sourced from DEX liquidity pools on the HyperEVM network.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input",
  "output"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "properties": {
      "include_24hr_vol": {
       "type": "boolean"
      },
      "mcap_fdv_fallback": {
       "type": "boolean"
      },
      "include_market_cap": {
       "type": "boolean"
      },
      "include_inactive_source": {
       "type": "boolean"
      },
      "include_24hr_price_change": {
       "type": "boolean"
      },
      "include_total_reserve_in_usd": {
       "type": "boolean"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type",
    "example"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/coingecko-onchain-dex-token-price-hyperevm-network-467f4f3c/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from pro-api.coingecko.com](https://www.zero.xyz/host/pro-api.coingecko.com/llms.txt)
