Crypto

Provides real-time, accurate data on current cryptocurrency prices from leading exchanges. By leveraging this endpoint, users can obtain essential information on various digital assets, including Bitcoin (BTC), Ethereum (ETH), and other top cryptocurrencies. The data returned includes current price.

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>"