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"
]
}
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"
]
}
Response
Click "Send Request" to see the response...
Authorizations
Authorization
header
required
Authentication token in the format "Bearer <token>"