# CoinGecko Onchain DEX Token Price – SKALE Europa

> CoinGecko Onchain DEX Token Price – SKALE Europa 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 token price and market data for tokens on the SKALE Europa network by contract address.

## Facts

- Endpoint: GET https://pro-api.coingecko.com/api/v3/x402/onchain/simple/networks/skale-europa/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-skale-europa-8a0f53d7
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_TVWCM30iakIbVU392fylt

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-skale-europa-8a0f53d7
```

Example prompt: What's the current onchain price and 24-hour trading volume for the token at contract address 0xabc123... on the SKALE Europa network? Include market cap and price change too.

## When to prefer this

Choose this endpoint when you specifically need onchain DEX price data for tokens deployed on the SKALE Europa network. It is ideal for DeFi agents monitoring SKALE-native tokens, since it queries live DEX liquidity rather than centralized exchange feeds. Prefer it over CoinGecko's standard /simple/price endpoint when the token may not be listed on major CEXes but trades on SKALE Europa DEXes. It is more appropriate than Ethereum mainnet or other network endpoints when the token contract is on SKALE Europa specifically.

## Known failure modes

- Unknown or unlisted contract address returns empty data or null price
- SKALE Europa network may have limited token coverage compared to major EVM chains
- Inactive token with no recent DEX trades returns no price if include_inactive_source is false
- Malformed contract address causes a 400 Bad Request
- Rate limit exceeded returns 429 Too Many Requests
- Payment not completed via x402 protocol 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 keyed by token contract address containing the token's current USD price sourced from onchain DEX data on SKALE Europa, along with optional fields such as 24-hour volume, market capitalization, 24-hour price change percentage, total reserve in USD, and FDV, depending on which optional flags were enabled in the request.

## 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-skale-europa-8a0f53d7/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)
