list_billing_history
Retrieve and review billing transactions for your Vultr cloud services over a specified period, enabling cost tracking and financial management.
Instructions
List billing history for the specified number of days.
Args: days: Number of days to include (default: 30) per_page: Number of items per page (default: 25)
Returns: Billing history with transaction details
Input Schema
Name | Required | Description | Default |
---|---|---|---|
days | No | ||
per_page | No |
Input Schema (JSON Schema)
{
"properties": {
"days": {
"anyOf": [
{
"type": "integer"
},
{
"type": "null"
}
],
"default": 30,
"title": "Days"
},
"per_page": {
"anyOf": [
{
"type": "integer"
},
{
"type": "null"
}
],
"default": 25,
"title": "Per Page"
}
},
"type": "object"
}