getCryptocurrencyShortQuote
Retrieve real-time cryptocurrency quotes, including price, change, and trading volume, for specific digital assets with a single API request.
Instructions
Access real-time cryptocurrency quotes with the FMP Cryptocurrency Quick Quote API. Get a concise overview of current crypto prices, changes, and trading volume for a wide range of digital assets.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
symbol | Yes | Cryptocurrency symbol (e.g., BTCUSD) |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"symbol": {
"description": "Cryptocurrency symbol (e.g., BTCUSD)",
"type": "string"
}
},
"required": [
"symbol"
],
"type": "object"
}