# Get bank transfer history Retrieves all bank transfers (SEPA, internal, deposits, withdrawals) for the customer. Endpoint: GET /transfer/{customerId}/bank-transfers Version: 1.0 Security: api-key ## Path parameters: - `customerId` (string, required) Customer ID (UUID) Example: "550e8400-e29b-41d4-a716-446655440000" ## Query parameters: - `limit` (number) Maximum number of transfers to return Example: 50 ## Response 200 fields (application/json): - `list` (array) - `list.type` (string) Transfer type - `list.amount` (string) Transfer amount - `list.from` (string) Source account - `list.to` (string) Destination account - `list.status` (string) Transfer status - `list.timestamp` (string) Transfer timestamp ## Response 401 fields ## Response 403 fields ## Response 404 fields