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

{
  "type": "object",
  "properties": {
    "price": {
      "type": "string",
      "description": "The current price in USD for the specified cryptocurrency.",
      "example": "123.45"
    }
  },
  "required": [
    "price"
  ]
}
curl --request GET \
  --url "https://www.apikiss.com/api/v1/crypto?symbol=BTC" \
  --header 'Authorization: Bearer <token>'
{
  "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>"

Path Parameters

symbol
string
required

The cryptocurrency symbol for which to get the price

Response

200 - application/json
price
string
required

The current price in USD for the specified cryptocurrency.

Example: 123.45

Try it out

Don't have a key? Sign up to get one for free.

The cryptocurrency symbol for which to get the price

Response

Click "Send Request" to see the response...