get_top_symbols_by_volume
Identify top symbols by trading volume from the Wormholescan API to analyze cross-chain activity. Specify a time span (7d, 15d, 30d) to retrieve results in a structured pandas DataFrame format.
Instructions
Fetch top symbols by volume from Wormholescan API.
Args:
timeSpan: Time span for data (7d, 15d, 30d). Default: 7d
Returns:
String representation of a pandas DataFrame containing top symbols by volume
Input Schema
Name | Required | Description | Default |
---|---|---|---|
timeSpan | No | 7d |
Input Schema (JSON Schema)
{
"properties": {
"timeSpan": {
"default": "7d",
"title": "Timespan",
"type": "string"
}
},
"title": "get_top_symbols_by_volumeArguments",
"type": "object"
}