novada_wallet_usage_record
Retrieve paginated wallet transaction history for auditing recent spend and exporting billing rows. Accepts optional date range and pagination parameters.
Instructions
Paginated wallet transaction / usage history. Wraps developer-api POST /v1/wallet/usage_record.
Best for: Auditing recent spend, exporting billing rows.
Not for: Aggregate by-product spend (use novada_traffic_daily) or current balances (use novada_plan_balance_all).
Params: start_time/end_time (YYYY-MM-DD, optional — server default ~30d), page, page_size (max 200). Tool emits both start_time AND server's typo'd strat_time for forward-compat.
Auth: NOVADA_DEVELOPER_API_KEY (falls back to NOVADA_API_KEY).
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| start_time | No | Inclusive start date in YYYY-MM-DD. Defaults to 30 days ago on the server side. NOTE: this tool transparently emits both `start_time` and the server's typo'd `strat_time` for forward compat. | |
| end_time | No | Inclusive end date YYYY-MM-DD. Defaults to today. | |
| page | Yes | 1-based page index. | |
| page_size | Yes | Page size, max 200. |