get-crypto-price
Retrieve real-time cryptocurrency prices and 24-hour market statistics by inputting a specific cryptocurrency symbol. Powered by CoinCap API v3 for accurate data.
Instructions
Get current price and 24h stats for a cryptocurrency
Input Schema
Name | Required | Description | Default |
---|---|---|---|
symbol | Yes | Cryptocurrency symbol (e.g., BTC, ETH) |
Input Schema (JSON Schema)
{
"properties": {
"symbol": {
"description": "Cryptocurrency symbol (e.g., BTC, ETH)",
"type": "string"
}
},
"required": [
"symbol"
],
"type": "object"
}