get-coin-avg-price
Retrieve the historical average price of a cryptocurrency for a specific date using its unique identifier and Unix timestamp.
Instructions
Get the historical average price for a specific cryptocurrency based on its unique identifier and a specific date.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
coinId | Yes | The identifier of coin | |
timestamp | Yes | Unix timestamp |
Input Schema (JSON Schema)
{
"properties": {
"coinId": {
"description": "The identifier of coin",
"type": "string"
},
"timestamp": {
"description": "Unix timestamp",
"type": "number"
}
},
"required": [
"coinId",
"timestamp"
],
"type": "object"
}