get-crypto-price
Fetch current price and 24-hour statistics for any cryptocurrency by providing its symbol. Access real-time data for informed market analysis.
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"
}