fetch_latest_announcements
Fetch Binance announcements in Markdown format for instant analysis, specifying count and page for customized results.
Instructions
Tool to fetch the latest Binance announcements in Markdown format.
Args:
count: Number of announcements to fetch (max 20).
page: Page number to fetch (default 1).
Returns:
Markdown string with announcement title, URL, and time.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
count | No | ||
page | No |
Input Schema (JSON Schema)
{
"properties": {
"count": {
"default": 20,
"title": "Count",
"type": "integer"
},
"page": {
"default": 1,
"title": "Page",
"type": "integer"
}
},
"title": "fetch_latest_announcementsArguments",
"type": "object"
}