ToolAssay

Current USD prices for any crypto asset

Current USD prices for any crypto asset: majors by ticker (BTC, ETH, SOL), anything else by CoinGecko id or chain + contract address — so long-tail meme tokens work too. Up to 25 assets per call with per-asset confidence scores and timestamps. Crypto only; no equities or ETFs. POST a JSON body like: {"symbols":["BTC","ETH","pepe"]}

Answeringour last check, 2026-09-24
1 of 1checks answered this week
32 msmedian answer time
$0.003listed price per call
$0.003price 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

POST https://keyronne.com/api/price

CategoryMarket data
Provider hostkeyronne.com
Networkseip155:8453
Payment schemesexact
Self-reported calls, 30 days4 from 3 payers (the provider's figure, not ours)

Our checks, last 30 days

DayResultHTTPAskedTime
2026-09-24 valid payment request 402$0.003 32 ms

Example input (from the provider)

{
  "body": {
    "symbols": [
      "BTC",
      "ETH",
      "pepe"
    ]
  },
  "bodyType": "json",
  "method": "POST",
  "type": "http"
}

Promised output schema (from the provider)

{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "properties": {
    "input": {
      "properties": {
        "body": {
          "properties": {
            "symbol": {
              "description": "One ticker or CoinGecko id, e.g. \"BTC\", \"dogwifcoin\".",
              "type": "string"
            },
            "symbols": {
              "description": "Batch of tickers/CoinGecko ids, or \"chain:address\" strings.",
              "items": {
                "type": "string"
              },
              "maxItems": 25,
              "type": "array"
            },
            "tokens": {
              "description": "Any token by contract address (covers coins with no listing).",
              "items": {
                "properties": {
                  "address": {
                    "description": "Token contract address on that chain.",
                    "type": "string"
                  },
                  "chain": {
                    "description": "e.g. ethereum, base, arbitrum, optimism, polygon, bsc, solana.",
                    "type": "string"
                  }
                },
                "required": [
                  "chain",
                  "address"
                ],
                "type": "object"
              },
              "maxItems": 25,
              "type": "array"
            }
          },
          "type": "object"
        },
        "bodyType": {
          "enum": [
            "json"
          ],
          "type": "string"
        },
        "method": {
          "enum": [
            "POST"
          ],
          "type": "string"
        },
        "type": {
          "const": "http",
          "type": "string"
        }
      },
      "type": "object"
    },
    "output": {
      "properties": {
        "attribution": {
          "type": "string"
        },
        "count": {
          "type": "integer"
        },
        "found": {
          "type": "integer"
        },
        "note": {
          "description": "Present when some queries had no price.",
          "type": "string"
        },
        "prices": {
          "items": {
            "properties": {
              "coin": {
                "description": "Resolved DefiLlama coin key.",
                "type": "string"
              },
              "confidence": {
                "description": "0-1 price confidence score.",
                "type": "number"
              },
              "decimals": {
                "type": "integer"
              },
              "found": {
                "type": "boolean"
              },
              "priceUsd": {
                "type": "number"
              },
              "query": {
                "description": "Your input, echoed back.",
                "type": "string"
              },
              "symbol": {
                "type": "string"
              },
              "updatedAt": {
                "type": "string"
              }
            },
            "type": "object"
          },
          "type": "array"
        }
      },
      "type": "object"
    }
  },
  "required": [
    "input"
  ],
  "type": "object"
}

This page as JSON