get_fills
Retrieve your account's executed trades, newest first, with pagination to page through full history. Use cursor to fetch next page until null.
Instructions
List the authenticated account's fills (executed trades), newest first. Returns { items, next_cursor }. items is this page of results; next_cursor is an opaque token for the next page, or null when this is the last page. To read the full history, keep calling with cursor: <previous next_cursor> until next_cursor is null. limit sets the size of ONE page, not a total. Requires API credentials.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | Maximum number of fills per page (max 1000). | |
| cursor | No | Opaque pagination cursor. Omit for the first page; to get the next page, pass back the `next_cursor` from the previous response verbatim. Stop when `next_cursor` is null — that means there are no more results. Never construct or edit a cursor: the format is not part of the contract. |