ToolAssay

Spot USD price for any crypto asset

Spot USD price for any crypto asset. Accepts a ticker symbol (eth, btc, sol), a CoinGecko id (ethereum), or an EVM token contract address. Returns the USD price plus 24h change, with market cap for listed assets, or liquidity, 24h volume and the top DEX pair for contract addresses. Cached 60 seconds so repeated calls in one agent workflow stay consistent with each other.

Answeringour last check, 2026-09-24
1 of 1checks answered this week
1290 msmedian answer time
$0.002listed price per call
$0.002price it asked us

Paid test badge: not yet. The checks above are free: we call the tool without paying and read the payment request it sends back. The Verified badge needs paid calls whose answers match the promised output, and nobody can buy a badge.

Endpoint

GET https://chain.cyberwarex.com/price

CategoryMarket data
Provider hostchain.cyberwarex.com
Networkseip155:8453
Payment schemesexact
Self-reported calls, 30 days6 from 4 payers (the provider's figure, not ours)

Our checks, last 30 days

DayResultHTTPAskedTime
2026-09-24 valid payment request 402$0.002 1290 ms

Example input (from the provider)

{
  "method": "GET",
  "queryParams": {
    "query": "eth"
  },
  "type": "http"
}

Promised output schema (from the provider)

{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "properties": {
    "input": {
      "additionalProperties": false,
      "properties": {
        "method": {
          "enum": [
            "GET",
            "HEAD",
            "DELETE"
          ],
          "type": "string"
        },
        "queryParams": {
          "additionalProperties": false,
          "properties": {
            "chain": {
              "default": "base",
              "description": "EVM chain to query.",
              "enum": [
                "base",
                "ethereum",
                "arbitrum",
                "optimism",
                "polygon"
              ],
              "type": "string"
            },
            "query": {
              "description": "Ticker symbol, CoinGecko id, or 0x token contract address.",
              "type": "string"
            }
          },
          "required": [
            "query"
          ],
          "type": "object"
        },
        "type": {
          "const": "http",
          "type": "string"
        }
      },
      "required": [
        "type",
        "method"
      ],
      "type": "object"
    },
    "output": {
      "properties": {
        "example": {
          "properties": {
            "change_24h_pct": {
              "type": [
                "number",
                "null"
              ]
            },
            "coingecko_id": {
              "type": "string"
            },
            "liquidity_usd": {
              "description": "Only for contract-address queries.",
              "type": "number"
            },
            "market_cap_usd": {
              "type": [
                "number",
                "null"
              ]
            },
            "price_usd": {
              "type": [
                "number",
                "null"
              ]
            },
            "query": {
              "type": "string"
            },
            "source": {
              "description": "coingecko or dexscreener.",
              "type": "string"
            },
            "top_pair": {
              "description": "Only for contract-address queries.",
              "type": "object"
            },
            "volume_24h_usd": {
              "description": "Only for contract-address queries.",
              "type": "number"
            }
          },
          "type": "object"
        },
        "type": {
          "type": "string"
        }
      },
      "required": [
        "type"
      ],
      "type": "object"
    }
  },
  "required": [
    "input"
  ],
  "type": "object"
}

This page as JSON