# List Transactions for an Account Returns a list of transactions for a specified account. Endpoint: GET /accounts/{account_id}/transactions Version: 1.0.0 Security: apiKeyAuth ## Path parameters: - `account_id` (string, required) The ID of the account. ## Query parameters: - `startTime` (any) Start time for filtering transactions (ISO 8601 format). Also accepts 'start_time' for backwards compatibility. - `endTime` (any) End time for filtering transactions (ISO 8601 format). Also accepts 'end_time' for backwards compatibility. - `offset` (any) Opaque offset identifier for pagination. Use the nextOffset from a previous response. - `limit` (any) Maximum number of transactions to return ## Header parameters: - `x-entity-id` (string) Optional entity ID for scoped access to entity-specific data ## Response 200 fields (application/json): - `page` (any) - `transactions` (array, required) An array of transactions with entity type dependent on the account type. Return an empty array if this information isn't available. Only deposit, loan, or line-of-credit transactions are consumed. ## Response 422 fields (application/json): - `detail` (array) - `detail.loc` (array, required) - `detail.msg` (string, required) - `detail.type` (string, required)