# CoinGecko Pro On-Chain ETH Token Price (PEPE/0x6982508145454Ce325dDbE47a25d4ec3d2311933)

> CoinGecko Pro On-Chain ETH Token Price (PEPE/0x6982508145454Ce325dDbE47a25d4ec3d2311933) is a paid API for AI agents from pro-api.coingecko.com, paid per call via x402, $0.010000/call, status unknown (last checked 2026-09-15).

Returns the current on-chain price for the PEPE ERC-20 token (contract 0x6982508145454Ce325dDbE47a25d4ec3d2311933) on Ethereum, including fiat and native-chain quotes.

## Facts

- Endpoint: GET https://pro-api.coingecko.com/api/v3/x402/onchain/simple/networks/eth/token_price/0x6982508145454Ce325dDbE47a25d4ec3d2311933
- Price: $0.010000/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/pro-api-coingecko-com-b144ee7c
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_WxiZO1_X_Xm2tRy2wSAaj

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

Example prompt: What's the current on-chain price of the PEPE token on Ethereum — can you pull the live USD price including 24-hour volume and price change from CoinGecko?

## When to prefer this

Use this endpoint when you need a real-time on-chain price specifically for the PEPE ERC-20 token on Ethereum mainnet by contract address, as opposed to CoinGecko's off-chain aggregated price endpoint. Ideal when you want DEX-sourced price data with optional volume and market cap metrics for this specific hardcoded contract.

## Known failure modes

- Invalid or unsupported contract address returns 404 or empty data
- Network identifier mismatch returns no price data
- Token has insufficient on-chain liquidity, returning stale or absent price
- Payment not completed (x402) returns 402 Payment Required
- Rate limiting returns 429 Too Many Requests
- Inactive token with no recent trades may return null values unless include_inactive_source=true

## How this service works

Fetches the current on-chain price for a specified Ethereum token contract address, returning fiat and native-chain quote values.

## Output

Returns a JSON object containing the current on-chain price of the PEPE ERC-20 token in fiat (e.g. USD) and native chain currency, optionally including 24hr trading volume, market cap, and 24hr price change percentage sourced from DEX liquidity data on Ethereum mainnet.

## Example request

```json
{
 "input": {
  "type": "http",
  "method": "GET",
  "queryParams": {
   "include_24hr_vol": true,
   "include_market_cap": false,
   "include_24hr_price_change": true
  }
 },
 "output": {
  "type": "object",
  "example": {
   "0x6982508145454Ce325dDbE47a25d4ec3d2311933": {
    "eth": 0.00000156,
    "usd": 0.000045,
    "usd_24h_vol": 1250000,
    "usd_24h_change": 5.32
   }
  }
 }
}
```

## 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"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "data"
 ],
 "properties": {
  "data": {
   "type": "object",
   "required": [
    "id",
    "type",
    "attributes"
   ],
   "properties": {
    "id": {
     "type": "string"
    },
    "type": {
     "type": "string"
    },
    "attributes": {
     "type": "object",
     "required": [
      "token_prices",
      "h24_volume_usd",
      "h24_price_change_percentage"
     ],
     "properties": {
      "token_prices": {
       "type": "object",
       "required": [
        "0x6982508145454ce325ddbe47a25d4ec3d2311933"
       ],
       "properties": {
        "0x6982508145454ce325ddbe47a25d4ec3d2311933": {
         "type": "string"
        }
       }
      },
      "h24_volume_usd": {
       "type": "object",
       "required": [
        "0x6982508145454ce325ddbe47a25d4ec3d2311933"
       ],
       "properties": {
        "0x6982508145454ce325ddbe47a25d4ec3d2311933": {
         "type": "string"
        }
       }
      },
      "h24_price_change_percentage": {
       "type": "object",
       "required": [
        "0x6982508145454ce325ddbe47a25d4ec3d2311933"
       ],
       "properties": {
        "0x6982508145454ce325ddbe47a25d4ec3d2311933": {
         "type": "string"
        }
       }
      }
     }
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/pro-api-coingecko-com-b144ee7c/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)
