# List Credit Transfers List all SEPA credit transfers for the specified account and batch in the request URL. All transfers in the result list are of the same , which is specified in the batch itself. Endpoint: GET /v1/accounts/{account_id}/batch_transfers/{batch_transfer_id}/transfers Version: 1.0 ## Path parameters: - `account_id` (string, required) The ID of the account - `batch_transfer_id` (string, required) The ID of the batch transfer ## Query parameters: - `page[number]` (string) The page number of the response. - `page[size]` (string) The size of each page in the response. - `filter[created_at][min]` (string) Filters the results to include only transfers created after the specified date and time. - `filter[created_at][max]` (string) Filters the results to include only transfers created before the specified date and time. - `filter[creditor_iban]` (string) Filters the results to include only transfers with the given . Multiple comma-separated values are supported. - `filter[end_to_end_id]` (string) Filters the results to include only transfers with the given . Multiple comma-separated values are supported. - `filter[id]` (string) Filters the results to include only transfers with the given ID. Multiple comma-separated values are supported. - `filter[initiator_reference]` (string) Filters the results to include only transfers with the given . Multiple comma-separated values are supported. - `filter[status]` (string) Filters the results to include only transfers with the given . Multiple comma-separated values are supported. Enum: "OPEN", "EXECUTING", "BOOKED", "CANCELED", "FAILED" ## Response 200 fields (application/json): - `id` (string) Unique ID of the SEPA credit transfer. Example: "f874b3102718a4d757a6b6e4d5996078sctx" - `account_id` (string) The account ID of the account that the transfer is associated with. Example: "236f9042a19b65c0867e10c922b93502cacc" - `status` (string) The status of the batch transfer. Enum: "OPEN", "EXECUTING", "BOOKED", "CANCELED", "FAILED" - `type` (string) The for all transfers of the batch. Enum: "SCT", "SCT_INSTANT" - `creditor_iban` (string) The recipient's IBAN. Example: "DE87110101001000057123" - `creditor_name` (string) The recipient's name. Example: "Hans Mustermann" - `amount` (object) The amount of the transfer transaction (in Euro cents). - `amount.value` (integer) Amount described in smallest currency unit (e.g. cents). Example: 1000 - `amount.currency` (string) The currency of the given value. Only EUR is currently supported. Example: "EUR" - `description` (string) Description for the transaction, which will be visible to the recipient. Limited to 140 characters. Example: "Salary Payment" - `end_to_end_id` (string) Transfer's transaction EndToEnd ID for later identification. Example: "e2178fc8b9ad4a479e269a47f90b4a43" - `initiator_reference` (string) A unique reference for the transfer. Example: "2603037c-e264-46c4-82e8-0d3ebc23a30f" - `failure_reason` (string) Details in case the is . Example: "Creditor IBAN is not SEPA instant reachable." - `batch_id` (string) ID of the batch (transfer) which initiated this SEPA credit transfer Example: "f874b3102718a4d757a6b6e4d5996078sctb" - `schedule_id` (string) ID of the scheduled transfer which initiated this SEPA credit transfer Example: "f874b3102718a4d757a6b6e4d599607ccsto" - `created_at` (string) UTC timestamp when the batch transfer was created. Example: "2025-04-01T13:59:52+00:00" - `updated_at` (string) UTC timestamp when the batch transfer was updated the last time. Example: "2025-04-01T14:10:30+00:00" ## Response 403 fields (application/json): - `id` (string) Example: "a95f2aaf-4e0c-4d49-8021-8a16a884ed86" - `status` (string) Example: "403" - `code` (string) Example: "unauthorized_action" - `title` (string) Example: "Unauthorized Action" - `detail` (string) Example: "Unauthorized action is not allowed." ## Response 404 fields (application/json): - `id` (string) Example: "a95f2aaf-4e0c-4d49-8021-8a16a884ed86" - `status` (string) Example: "404" - `code` (string) Example: "model_not_found" - `title` (string) Example: "Model Not Found" - `detail` (string) Example: "Couldn't find 'Solaris::Identification' for id 'bbbcccfff388923eb899a5852df6cidt'." ## Response 500 fields (application/json): - `id` (string) Example: "e8915041-9d8c-4d96-9dd1-04e8522ecdbf" - `status` (string) Example: "500" - `code` (string) Example: "generic_error" - `title` (string) Example: "Generic Error" - `detail` (string) Example: "There was an error."