Catalog/finance-crypto-price

Finance

Crypto spot price API

Current crypto spot prices for one or more coins in a fiat currency. Answers queries like 'price of bitcoin', 'how much is ETH worth in USD', 'current solana price'.

Price$0.01per request
MethodGET
Route/v1/finance/crypto-price
StatusLive
MIME typeapplication/json
Rate limit60/minute
Cache60s public
financecryptopricemarket-databitcoinethereumspot-pricecoingecko
API URLhttps://x402.hexl.dev/v1/finance/crypto-price
Integration docs
Example request
{
  "ids": "bitcoin,solana",
  "vs": "usd"
}
Example response
{
  "prices": {
    "bitcoin": {
      "usd": 100000
    },
    "solana": {
      "usd": 180
    }
  }
}
Input schema
{
  "type": "object",
  "required": [
    "ids",
    "vs"
  ],
  "properties": {
    "ids": {
      "type": "string",
      "examples": [
        "bitcoin,solana"
      ]
    },
    "vs": {
      "type": "string",
      "examples": [
        "usd"
      ]
    }
  }
}
Output schema
{
  "type": "object",
  "required": [
    "prices"
  ],
  "properties": {
    "prices": {
      "type": "object",
      "additionalProperties": true
    }
  }
}