# CoinGecko Onchain DEX Token Price – Sei Network

> CoinGecko Onchain DEX Token Price – Sei 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-14).

Returns real-time DEX token price and market data for token contract addresses on the Sei Network blockchain.

## Facts

- Endpoint: GET https://pro-api.coingecko.com/api/v3/x402/onchain/simple/networks/sei-network/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-sei-network-2f8850f8
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_fD6fe79iVo2xhFzZRT2eu

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-sei-network-2f8850f8
```

Example prompt: What's the current onchain DEX price, 24-hour volume, and market cap for the Sei Network token at contract address 0xabc123...? Include the 24hr price change too.

## When to prefer this

Choose this endpoint when you need onchain DEX-sourced price and market data specifically for tokens deployed on the Sei Network, identified by contract address rather than ticker symbol. Prefer this over CoinGecko's standard simple/price endpoint when you need DEX liquidity, reserve data, or prices for tokens not yet listed on centralized exchanges. Use when Sei Network specificity is required; other sibling endpoints cover different chains (e.g. Base, Ethereum).

## Known failure modes

- Invalid or unrecognized contract address returns empty or null data for that token
- Token not listed on any Sei Network DEX returns no price data
- Network identifier mismatch results in a 404 or empty response
- Rate limiting or payment failure (402) if x402 payment is not properly submitted
- Inactive token with no recent trades may return stale or missing data unless include_inactive_source is enabled

## 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 current USD price sourced from onchain DEX data on Sei Network, optionally including 24-hour trading volume, market capitalization, 24-hour price change percentage, and total reserve in USD. Data reflects real-time DEX pool pricing rather than centralized exchange aggregates.

## 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-sei-network-2f8850f8/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)
