# CoinGecko Onchain DEX Token Price — Base Network (Ethereum Token)

> CoinGecko Onchain DEX Token Price — Base Network (Ethereum Token) 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 onchain DEX price and market data for an Ethereum token contract address on the Base network via CoinGecko's GeckoTerminal data.

## Facts

- Endpoint: GET https://pro-api.coingecko.com/api/v3/x402/onchain/simple/networks/base/token_price/ethereum
- 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/pro-api-coingecko-com-0baad731
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_WYNbsP3nBttdXMnb_YU2A

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 pro-api-coingecko-com-0baad731
```

Example prompt: What's the current onchain DEX price for the Ethereum token contract 0x833589fCD6eDb6E08f4c7C32D4f71b54bdA0291 on the Base network? Also include the 24-hour volume, market cap, and price change.

## When to prefer this

Use this endpoint when you need real-time onchain DEX price data for a specific token contract address on the Coinbase Base network, especially when the token may not be listed on centralized exchanges. Prefer over CoinGecko's standard /simple/price endpoint when the token is only traded onchain via DEXes and you have a contract address rather than a CoinGecko coin ID.

## Known failure modes

- Token contract address not found on Base network — returns empty or null price data
- Invalid contract address format — returns 400 or empty response
- Token is inactive and include_inactive_source not set — missing price data
- Rate limit exceeded on pro API — returns 429 Too Many Requests
- Payment not processed (x402) — returns 402 Payment Required

## 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 with the onchain token price in USD (and optionally fiat), plus optional fields: 24-hour trading volume, market capitalization, 24-hour price change percentage, and total reserve in USD — all sourced from DEX liquidity pools on the Base 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/pro-api-coingecko-com-0baad731/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)
