# CoinGecko Onchain Token Price – Monad Network

> CoinGecko Onchain Token Price – Monad 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 real-time DEX price and market data for a token on the Monad network by contract address, sourced from onchain liquidity pools.

## Facts

- Endpoint: GET https://pro-api.coingecko.com/api/v3/x402/onchain/simple/networks/monad/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-924116a6
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_oIOjHn9Vmy_NwoDLmplXn

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-924116a6
```

Example prompt: What's the current onchain price and 24-hour trading volume for the token at contract address 0x1234abcd...ef on the Monad network? Also include the market cap if available.

## When to prefer this

Use this endpoint when you need real-time onchain DEX price data specifically for a token deployed on the Monad network and you have its contract address. Prefer this over CoinGecko's standard token price endpoints when you need DEX-sourced (not CEX-aggregated) pricing or when the token is only traded onchain on Monad.

## Known failure modes

- Invalid or unrecognized contract address returns 404 or empty result
- Token not listed on any Monad DEX returns no price data
- Network temporarily unavailable returns 503
- Inactive token with no recent trades may return stale or null price
- Malformed address format returns 400 validation error

## 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 USD price of the specified token on the Monad network as sourced from DEX liquidity pools, along with optionally requested metrics such as 24hr volume, market capitalization, 24hr price change percentage, total reserve in USD, and FDV.

## 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-924116a6/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)
