[
{
"description": "Gets the daily summary data (opening price, closing price, high price, low price, and more) for a length of time for the given asset. Useful for calculations using historical pricing over time",
"name": "getSummaries",
"parameters": {
"properties": {
"symbol": {
"type": "string"
},
"start": {
"type": "string",
"format": "date"
},
"end": {
"type": "string",
"format": "date"
}
},
"required": [
"symbol"
],
"type": "object"
}
},
{
"description": "Gets asset information for a list of symbols",
"name": "getAssetsInfo",
"parameters": {
"properties": {
"stocks": {
"type": "array",
"items": {
"type": "string"
}
},
"cryptos": {
"type": "array",
"items": {
"type": "string"
}
}
},
"type": "object"
}
},
{
"description": "Gets the current price for a list of symbols",
"name": "getQuotes",
"parameters": {
"properties": {
"stocks": {
"type": "array",
"items": {
"type": "string"
}
},
"cryptos": {
"type": "array",
"items": {
"type": "string"
}
}
},
"type": "object"
}
}
]