# CoinGecko Pro Onchain Token Price — SKALE Europa Network

> CoinGecko Pro Onchain Token Price — SKALE Europa 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-13).

Returns DEX-based token price and market data for a given contract address on the SKALE Europa network.

## Facts

- Endpoint: GET https://pro-api.coingecko.com/api/v3/x402/onchain/simple/networks/skale-europa/token_price/:address
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/coingecko-pro-onchain-token-price-skale-europa-network-eb3513eb
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_IsY-kmE_xjni9eWQjv93V

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-pro-onchain-token-price-skale-europa-network-eb3513eb
```

Example prompt: What's the current onchain DEX price, 24-hour volume, and market cap for the token at contract address 0xD2Aaa00700000000000000000000000000000000 on the SKALE Europa network?

## When to prefer this

Use this endpoint when you specifically need onchain DEX-sourced price data for a token deployed on the SKALE Europa network, rather than centralized exchange prices. It is ideal when you have a token contract address and need real-time DEX market data including volume, market cap, or reserve figures for a SKALE Europa token that may not be listed on major CEXes.

## Known failure modes

- Invalid or unrecognized contract address returns empty or error response
- Token not listed on any SKALE Europa DEX returns no price data
- Network identifier mismatch results in 404 or empty data
- Payment not processed (x402 protocol failure) blocks response
- Rate limiting or quota exceeded returns 429 error
- Inactive token with no recent DEX activity may return stale or no data unless include_inactive_source is true

## 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 sourced from onchain DEX liquidity pools on SKALE Europa, along with optional fields such as 24-hour trading volume, market capitalization, 24-hour price change percentage, and total reserve in USD, depending on which query flags are enabled.

## 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-pro-onchain-token-price-skale-europa-network-eb3513eb/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)
