Crypto

Get real-time cryptocurrency prices from leading exchanges for Bitcoin, Ethereum, and other top digital assets. Fast, accurate, and easy to integrate.

Gets current price of a crypto token

Returns the current price in USD for a cryptocurrency by querying multiple reliable sources and averaging the results.

GET
/ crypto

Parameters

Name Type Description Required
symbol string The cryptocurrency symbol for which to get the price Required

Response Schema

{
  "type": "object",
  "properties": {
    "price": {
      "type": "string",
      "description": "The current price in USD for the specified cryptocurrency.",
      "example": "123.45"
    }
  },
  "required": [
    "price"
  ]
}

Authorizations

Authorization
header
required

Authentication token in the format "Bearer <token>"