list_universal_snapshots
Retrieve unified snapshots for multiple assets of a specified type using structured parameters like ticker, order, limit, and sort. Ideal for asset data consolidation and analysis.
Instructions
Get universal snapshots for multiple assets of a specific type.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
limit | No | ||
order | No | ||
params | No | ||
sort | No | ||
ticker_any_of | No | ||
type | Yes |
Input Schema (JSON Schema)
{
"properties": {
"limit": {
"anyOf": [
{
"type": "integer"
},
{
"type": "null"
}
],
"default": null,
"title": "Limit"
},
"order": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Order"
},
"params": {
"anyOf": [
{
"type": "object"
},
{
"type": "null"
}
],
"default": null,
"title": "Params"
},
"sort": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Sort"
},
"ticker_any_of": {
"anyOf": [
{
"items": {
"type": "string"
},
"type": "array"
},
{
"type": "null"
}
],
"default": null,
"title": "Ticker Any Of"
},
"type": {
"title": "Type",
"type": "string"
}
},
"required": [
"type"
],
"title": "list_universal_snapshotsArguments",
"type": "object"
}