get_crypto_price
Retrieve real-time cryptocurrency prices using a specific symbol and market currency. Integrates with Alpha Vantage for accurate financial data.
Instructions
Get cryptocurrency prices
Input Schema
Name | Required | Description | Default |
---|---|---|---|
market | Yes | Market currency (e.g., USD) | |
symbol | Yes | The crypto symbol (e.g., BTC) |
Input Schema (JSON Schema)
{
"properties": {
"market": {
"description": "Market currency (e.g., USD)",
"type": "string"
},
"symbol": {
"description": "The crypto symbol (e.g., BTC)",
"type": "string"
}
},
"required": [
"symbol",
"market"
],
"type": "object"
}