---
title: "List BankTransfer records"
method: GET
path: "/public/v2/bank-transfers/"
tags: ["Bank Transfers"]
---

# List BankTransfer records

`GET /public/v2/bank-transfers/`

Retrieve a paginated list of BankTransfer records with filtering and ordering options.

## Query parameters

- `search` string, nullable
- `company_id` integer[], nullable
- `number` integer[], nullable
- `start_date` string, date, nullable
- `end_date` string, date, nullable
- `debit_bank_account_number` integer[], nullable
- `credit_bank_account_number` integer[], nullable
- `record_status` RecordStatus[], nullable
- `approval_status` string[], nullable
- `approval_status_scope` RecordStatus[], nullable
- `updated_after` string, date-time, nullable
- `updated_before` string, date-time, nullable
- `ordering` string, nullable
- `limit` integer — Number of records to return per page (capped at 100)
- `offset` integer — Number of records to skip before starting to return results

## Response `200`

OK

- PagedPublicBankTransferSchemaOut
  - `items` PublicBankTransferSchemaOut[], required
    - `bank_match_status` string, nullable
    - `reconciliation_status` string, nullable
    - `created_by` AuditActorSchemaOut — Schema for audit actor information.
      - `actor_type` string, nullable
      - `email` string, nullable
      - `first_name` string, nullable
      - `last_name` string, nullable
      - `timestamp` string, date-time, nullable
    - `updated_by` AuditActorSchemaOut — Schema for audit actor information.
      - `actor_type` string, nullable
      - `email` string, nullable
      - `first_name` string, nullable
      - `last_name` string, nullable
      - `timestamp` string, date-time, nullable
    - `internal_id` integer, required
    - `number` integer, required
    - `transaction_id` integer, required
    - `debit_entry_id` integer, required
    - `credit_entry_id` integer, required
    - `date` string, date, required — Posting date (GL date) - the date when the transaction is recorded in the general ledger
    - `transaction_date` string, date, required — Transaction date (inception date) - the date when the transaction actually occurred
    - `company_id` integer, required
    - `company_name` string, required
    - `company_currency` string, required
    - `debit_bank_account_number` integer, nullable, required
    - `credit_bank_account_number` integer, nullable, required
    - `amount` string, required — Transfer amount
    - `exchange_rate` string, required
    - `memo` string, required
    - `record_status` 'draft' | 'posted' | 'archived', required
    - `currency_iso_4217_code` string[]
    - `created_at` string, date-time, required — Date and time the record was created
    - `updated_at` string, date-time, required — Date and time the record was last updated
  - `count` integer, required

## Other responses

- `400` — Bad Request

---

[API](https://skmtc.net/dualentry/apis/dualentry-public-api.md) · [All operations](https://skmtc.net/dualentry/apis/dualentry-public-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/dualentry/dualentry-public-api/revisions/bd3299445a5e/schema)
