get_holding_chart_public_treasury
Query historical cryptocurrency holdings charts for public companies and governments to analyze investment trends and portfolio changes over time.
Instructions
When using this tool, always use the jq_filter parameter to reduce the response size and improve performance.
Only omit if you're sure you don't need the data.
This endpoint allows you to query historical cryptocurrency holdings chart of public companies & governments by Entity ID and Coin ID
Response Schema
{
$ref: '#/$defs/public_treasury_get_holding_chart_response',
$defs: {
public_treasury_get_holding_chart_response: {
type: 'object',
properties: {
holding_value_in_usd: {
type: 'array',
items: {
type: 'array',
items: {
type: 'number'
}
}
},
holdings: {
type: 'array',
items: {
type: 'array',
items: {
type: 'number'
}
}
}
}
}
}
}
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
| entity_id | Yes | ||
| coin_id | Yes | ||
| days | Yes | data up to number of days ago Valid values: `7, 14, 30, 90, 180, 365, 730, max` | |
| include_empty_intervals | No | include empty intervals with no transaction data, default: false | |
| jq_filter | No | A jq filter to apply to the response to include certain fields. Consult the output schema in the tool description to see the fields that are available. For example: to include only the `name` field in every object of a results array, you can provide ".results[].name". For more information, see the [jq documentation](https://jqlang.org/manual/). |