# CoinGecko On-Chain Token Price for Base Network (Contract 0x008b2c67fe2e1a7a28105bd5e7d9760915907dbb)

> CoinGecko On-Chain Token Price for Base Network (Contract 0x008b2c67fe2e1a7a28105bd5e7d9760915907dbb) 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-13).

Returns the current on-chain price and optional market data for a specific ERC-20 token contract on the Coinbase Base network via CoinGecko's Pro API.

## Facts

- Endpoint: GET https://pro-api.coingecko.com/api/v3/x402/onchain/simple/networks/base/token_price/0x008b2c67fe2e1a7a28105bd5e7d9760915907dbb
- Price: $0.010000/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/pro-api-coingecko-com-076963f2
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_57CRfsUaR-UZHCo_Ds1-P

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-076963f2
```

Example prompt: What's the current on-chain price of the token at contract address 0x008b2c67fe2e1a7a28105bd5e7d9760915907dbb on the Base network — and can you also include its 24-hour volume and price change?

## When to prefer this

Use this endpoint when you need the live on-chain price of a specific known token on the Coinbase Base network identified by its contract address, especially when you want DEX-sourced pricing rather than centralized exchange data. Prefer this over generic CoinGecko coin ID lookups when you have the contract address but not the CoinGecko coin slug.

## Known failure modes

- Invalid or unknown contract address returns empty or null price data
- Contract address not indexed by CoinGecko returns 404 or empty response
- Network identifier mismatch causes no data returned
- Rate limiting or missing API key returns 401/429 error
- Payment not processed returns 402 error

## How this service works

Returns the on-chain price for a specific token contract on the Base network (queried by contract address).

## Output

Returns a JSON object with the on-chain USD price for the specified Base network token contract, optionally including market cap, 24-hour trading volume, 24-hour price change percentage, and total reserve in USD as sourced from CoinGecko's on-chain DEX data.

## Example request

```json
{
 "input": {
  "type": "http",
  "method": "GET",
  "queryParams": {
   "include_24hr_vol": true,
   "include_market_cap": true,
   "include_24hr_price_change": true
  }
 },
 "output": {
  "type": "object",
  "example": {
   "0x008b2c67fe2e1a7a28105bd5e7d9760915907dbb": {
    "usd": 1.25,
    "usd_24h_vol": 5000000,
    "usd_24h_change": 2.5,
    "usd_market_cap": 500000000
   }
  }
 }
}
```

## 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",
      "market_cap_usd",
      "h24_price_change_percentage"
     ],
     "properties": {
      "token_prices": {
       "type": "object",
       "required": [
        "0x008b2c67fe2e1a7a28105bd5e7d9760915907dbb"
       ],
       "properties": {
        "0x008b2c67fe2e1a7a28105bd5e7d9760915907dbb": {
         "type": "string"
        }
       }
      },
      "h24_volume_usd": {
       "type": "object",
       "required": [
        "0x008b2c67fe2e1a7a28105bd5e7d9760915907dbb"
       ],
       "properties": {
        "0x008b2c67fe2e1a7a28105bd5e7d9760915907dbb": {
         "type": "string"
        }
       }
      },
      "market_cap_usd": {
       "type": "object",
       "required": [
        "0x008b2c67fe2e1a7a28105bd5e7d9760915907dbb"
       ],
       "properties": {
        "0x008b2c67fe2e1a7a28105bd5e7d9760915907dbb": {
         "type": "null"
        }
       }
      },
      "h24_price_change_percentage": {
       "type": "object",
       "required": [
        "0x008b2c67fe2e1a7a28105bd5e7d9760915907dbb"
       ],
       "properties": {
        "0x008b2c67fe2e1a7a28105bd5e7d9760915907dbb": {
         "type": "string"
        }
       }
      }
     }
    }
   }
  }
 }
}
```

## More

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