# CoinGecko Onchain DEX Token Price – Arbitrum Network

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

Fetches real-time onchain DEX token price and market data for tokens on the Arbitrum network using their contract addresses.

## Facts

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

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-arbitrum-network-4fc17b5b
```

Example prompt: Can you look up the current onchain DEX price and 24-hour trading volume for the Arbitrum token at contract address 0x82aF49447D8a07e3bd95BD0d56f35241523fBab1, including market cap and price change?

## When to prefer this

Use this endpoint when you need real-time onchain DEX pricing for tokens on the Arbitrum network specifically, especially for newer or smaller tokens not yet listed on centralized exchanges. It is ideal when you need DEX-derived prices (not CEX prices), liquidity/reserve data, or market data sourced directly from onchain pool activity. Prefer this over generic CoinGecko coin endpoints when you have a contract address rather than a coin ID, or when the token may only exist onchain.

## Known failure modes

- Token contract address not found on Arbitrum — returns empty or null price data
- Invalid contract address format — returns 400 bad request
- Token exists but has no active DEX liquidity — price may be unavailable
- Rate limit exceeded on pro API tier — returns 429 too many requests
- Network-specific data unavailable due to node issues — returns 503
- Inactive token with no recent trading — may return stale or missing data

## 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 onchain DEX market data for the specified token contract on Arbitrum, including the current USD price derived from DEX pool data, and optionally 24-hour trading volume, market capitalization, 24-hour price change percentage, and total reserve in USD across liquidity pools.

## 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-arbitrum-network-4fc17b5b/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)
