get-coin-by-id
Retrieve detailed cryptocurrency data including price, market cap, and volume for a specific coin using its unique identifier.
Instructions
Get detailed information about a specific cryptocurrency based on its unique identifier.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
coinId | Yes | The identifier of coin, which you received from /coins call response. | |
currency | No | Currency for price data | USD |
Input Schema (JSON Schema)
{
"properties": {
"coinId": {
"description": "The identifier of coin, which you received from /coins call response.",
"type": "string"
},
"currency": {
"default": "USD",
"description": "Currency for price data",
"type": "string"
}
},
"required": [
"coinId"
],
"type": "object"
}