# List Transfer Records

Retrieves account fund transfers by specified criteria. Transfer records are sorted by client_request_id. If the client_request_id values in the request are provided in order, the response will preserve the same ordering. 

# OpenAPI definition

```json
{
  "info": {
    "title": "Webull Open API Reference",
    "description": "application.yml\\ncom\\ni18n\\nMETA-INF\\nstatic\\n\\r\\n",
    "contact": {
      "name": "",
      "url": "",
      "email": ""
    },
    "version": "2.0",
    "x-logo": {
      "url": "static/png/logo.png"
    }
  },
  "servers": [
    {
      "url": "https://broker-api.sandbox.webull.com"
    }
  ],
  "path": "/broker/funding/transfers/list",
  "method": "get",
  "tags": [
    "funding"
  ],
  "description": "Retrieves account fund transfers by specified criteria. Transfer records are sorted by client_request_id. If the client_request_id values in the request are provided in order, the response will preserve the same ordering. ",
  "operationId": "transferList",
  "parameters": [
    {
      "name": "account_id",
      "in": "query",
      "description": "Account identifier",
      "required": true,
      "schema": {
        "type": "String"
      },
      "example": "J6HA4EBQRQFJD2J6NQH0F7M649"
    },
    {
      "name": "start_time",
      "in": "query",
      "description": "The start datetime to include in the date range, formatted as yyyy-MM-dd'T'HH:mm:ss.SSSZ.<br/> Both start_time and end_time should be provided, end_time should be greater than start_time.<br/> By default, records from the last 7 days will be queried if no time range is specified.",
      "required": false,
      "schema": {
        "type": "String"
      },
      "example": "2025-01-05T22:59:59.012Z"
    },
    {
      "name": "end_time",
      "in": "query",
      "description": "The end datetime to include in the date range, formatted as yyyy-MM-dd'T'HH:mm:ss.SSSZ.<br/> Both start_time and end_time should be provided, end_date should be greater than start_time.<br/> By default, records from the last 7 days will be queried if no time range is specified.",
      "required": false,
      "schema": {
        "type": "String"
      },
      "example": "2025-01-06T22:59:59.012Z"
    },
    {
      "name": "transfer_types",
      "in": "query",
      "description": "Transfer types",
      "required": false,
      "schema": {
        "type": "string",
        "enum": [
          "ACH",
          "WIRE"
        ]
      },
      "example": "ACH,WIRE"
    },
    {
      "name": "directions",
      "in": "query",
      "description": "Transfer directions",
      "required": false,
      "schema": {
        "type": "string",
        "description": "Transfer direction",
        "enum": [
          "DEPOSIT",
          "WITHDRAWAL"
        ]
      },
      "example": "DEPOSIT,WITHDRAWAL"
    },
    {
      "name": "statuses",
      "in": "query",
      "description": "Transfer statuses",
      "required": false,
      "schema": {
        "type": "string",
        "enum": [
          "SUBMITTED",
          "CANCELED",
          "REJECTED",
          "COMPLETED",
          "RETURNED"
        ]
      },
      "example": "CANCELED,REJECTED"
    },
    {
      "name": "pagination_key",
      "in": "query",
      "description": "Pagination key from previous response for next page.",
      "required": false,
      "schema": {
        "type": "String"
      },
      "example": "eyJ2IjoxLCJsYXN0SWQiOiI5MTMyNDQ3NjkiLCJwYWdlSW===="
    },
    {
      "name": "x-app-key",
      "in": "header",
      "description": "A unique identifier issued to a developer for accessing an application's API.",
      "required": true,
      "schema": {
        "type": "string"
      }
    },
    {
      "name": "x-app-secret",
      "in": "header",
      "description": "A unique key issued to developers to access the application's API.",
      "required": true,
      "schema": {
        "type": "string"
      }
    },
    {
      "name": "x-timestamp",
      "in": "header",
      "description": "Timestamp of the request, follows ISO8601 format: YYYY-MM-DDThh:mm:ssZ, e.g. 2023-07-16T19:23:51Z, only supports UTC time zone.",
      "required": true,
      "schema": {
        "type": "string"
      }
    },
    {
      "name": "x-signature-version",
      "in": "header",
      "description": "Signature algorithm version, default is 1.0.",
      "required": true,
      "schema": {
        "type": "string",
        "default": "1.0"
      },
      "examples": {
        "1.0": {
          "value": "1.0"
        }
      }
    },
    {
      "name": "x-signature-algorithm",
      "in": "header",
      "description": "Signature algorithm, default is HMAC-SHA1.",
      "required": true,
      "schema": {
        "type": "string",
        "default": "HMAC-SHA1"
      },
      "examples": {
        "HMAC-SHA1": {
          "value": "HMAC-SHA1"
        }
      }
    },
    {
      "name": "x-signature-nonce",
      "in": "header",
      "description": "Signature unique random number.",
      "required": true,
      "schema": {
        "type": "string"
      }
    },
    {
      "name": "x-version",
      "in": "header",
      "description": "API interface version. Supported values: `v2`, `v3`.",
      "required": true,
      "schema": {
        "type": "string",
        "default": "v3"
      },
      "examples": {
        "v3": {
          "value": "v3"
        }
      }
    },
    {
      "name": "x-signature",
      "in": "header",
      "description": "A signature is a unique digital fingerprint, typically encrypted, that verifies the authenticity and integrity of a message or transaction, ensuring it has not been tampered with during transmission.",
      "required": true,
      "schema": {
        "type": "string"
      }
    }
  ],
  "responses": {
    "200": {
      "description": "OK",
      "content": {
        "application/json": {
          "schema": {
            "type": "object",
            "properties": {
              "data": {
                "type": "array",
                "description": "Result data list",
                "items": {
                  "required": [
                    "account_id",
                    "amount",
                    "client_request_id",
                    "create_time",
                    "currency",
                    "direction",
                    "status",
                    "transfer_id",
                    "transfer_type",
                    "update_time"
                  ],
                  "type": "object",
                  "properties": {
                    "client_request_id": {
                      "type": "string",
                      "description": "Client Request ID, unique for each request. <br/> Maximum length is 32 characters. <br/> Allowed characters: letters (A–Z, a–z), digits (0–9), hyphen (-), underscore (_).",
                      "example": "89JGKD4LKIVI5UU6L3KHNU10IA"
                    },
                    "account_id": {
                      "type": "string",
                      "description": "Account ID",
                      "example": "J6HA4EBQRQFJD2J6NQH0F7M649"
                    },
                    "transfer_id": {
                      "type": "string",
                      "description": "Transfer id generated by the system.",
                      "example": "0KGOHL4PR2SLC0DKIND4TI0002"
                    },
                    "transfer_type": {
                      "type": "string",
                      "description": "transfer type",
                      "example": "ACH",
                      "enum": [
                        "ACH",
                        "WIRE"
                      ]
                    },
                    "ach_relationship_id": {
                      "type": "string",
                      "description": "Required if transfer_type is ACH ",
                      "example": "89JGKD4S1VIX1U609K8NU10IA"
                    },
                    "bank_relationship_id": {
                      "type": "string",
                      "description": "Required if transfer_type is WIRE.",
                      "example": "C0DKID4LKIVI5UU6L3KHNU10HL4"
                    },
                    "amount": {
                      "type": "string",
                      "description": "Transfer amount",
                      "example": "1000.0"
                    },
                    "currency": {
                      "type": "string",
                      "description": "Currency",
                      "example": "USD",
                      "enum": [
                        "USD"
                      ]
                    },
                    "direction": {
                      "type": "string",
                      "description": "Transfer direction",
                      "example": "DEPOSIT",
                      "enum": [
                        "DEPOSIT",
                        "WITHDRAWAL"
                      ]
                    },
                    "status": {
                      "type": "string",
                      "description": "Transfer status",
                      "example": "SUBMITTED",
                      "enum": [
                        "SUBMITTED",
                        "CANCELED",
                        "REJECTED",
                        "COMPLETED",
                        "RETURNED"
                      ]
                    },
                    "reason": {
                      "type": "string",
                      "description": "reason of the status"
                    },
                    "create_time": {
                      "type": "string",
                      "description": "UTC time, format: yyyy-MM-dd'T'HH:mm:ss.SSSZ.",
                      "example": "2025-01-05T22:59:59.012Z"
                    },
                    "update_time": {
                      "type": "string",
                      "description": "UTC time, format: yyyy-MM-dd'T'HH:mm:ss.SSSZ.",
                      "example": "2025-01-05T22:59:59.012Z"
                    },
                    "fee": {
                      "type": "string",
                      "description": "Fee amount to be collected. Only applies when type is WIRE"
                    }
                  },
                  "title": "TransferResult"
                }
              },
              "pagination_key": {
                "type": "string",
                "description": "Pagination key for next page. If absent, indicates this is the last page.",
                "example": "eyJ2IjoxLCJsYXN0SWQiOiI5MTMyNDQ3NjkiLCJwYWdlSW===="
              }
            },
            "description": "Paginated result with cursor-based pagination",
            "title": "PaginatedResultVoTransferResult"
          }
        }
      }
    },
    "401": {
      "description": "Unauthorized: Authentication required",
      "content": {
        "application/json": {
          "schema": {
            "type": "object",
            "properties": {
              "error_code": {
                "type": "string",
                "description": "Internal logic error code",
                "example": "UNAUTHORIZED"
              },
              "message": {
                "type": "string",
                "description": "Error message",
                "example": "Insufficient permission"
              }
            }
          }
        }
      }
    },
    "417": {
      "description": "A business logic error triggered when the request cannot be processed due to domain-specific constraints.",
      "content": {
        "application/json": {
          "schema": {
            "type": "object",
            "properties": {
              "error_code": {
                "type": "string",
                "description": "Internal logic error code",
                "example": "INVALID_PARAMETER"
              },
              "message": {
                "type": "string",
                "description": "Error message",
                "example": "Parameter error, phone"
              }
            }
          }
        }
      }
    },
    "500": {
      "description": "Internal Server Error.",
      "content": {
        "application/json": {
          "schema": {
            "type": "object",
            "properties": {
              "error_code": {
                "type": "string",
                "description": "Internal logic error code",
                "example": "SYSTEM_ERROR"
              },
              "message": {
                "type": "string",
                "description": "Error message",
                "example": "Internal Server Error"
              }
            }
          }
        }
      }
    }
  },
  "postman": {
    "name": "List Transfer Records",
    "description": {
      "content": "Retrieves account fund transfers by specified criteria. Transfer records are sorted by client_request_id. If the client_request_id values in the request are provided in order, the response will preserve the same ordering. ",
      "type": "text/plain"
    },
    "url": {
      "path": [
        "broker",
        "funding",
        "transfers",
        "list"
      ],
      "host": [
        "{{baseUrl}}"
      ],
      "query": [
        {
          "disabled": false,
          "description": {
            "content": "(Required) Account identifier",
            "type": "text/plain"
          },
          "key": "account_id",
          "value": ""
        },
        {
          "disabled": false,
          "description": {
            "content": "The start datetime to include in the date range, formatted as yyyy-MM-dd'T'HH:mm:ss.SSSZ.<br/> Both start_time and end_time should be provided, end_time should be greater than start_time.<br/> By default, records from the last 7 days will be queried if no time range is specified.",
            "type": "text/plain"
          },
          "key": "start_time",
          "value": ""
        },
        {
          "disabled": false,
          "description": {
            "content": "The end datetime to include in the date range, formatted as yyyy-MM-dd'T'HH:mm:ss.SSSZ.<br/> Both start_time and end_time should be provided, end_date should be greater than start_time.<br/> By default, records from the last 7 days will be queried if no time range is specified.",
            "type": "text/plain"
          },
          "key": "end_time",
          "value": ""
        },
        {
          "disabled": false,
          "description": {
            "content": "Transfer types",
            "type": "text/plain"
          },
          "key": "transfer_types",
          "value": ""
        },
        {
          "disabled": false,
          "description": {
            "content": "Transfer directions",
            "type": "text/plain"
          },
          "key": "directions",
          "value": ""
        },
        {
          "disabled": false,
          "description": {
            "content": "Transfer statuses",
            "type": "text/plain"
          },
          "key": "statuses",
          "value": ""
        },
        {
          "disabled": false,
          "description": {
            "content": "Pagination key from previous response for next page.",
            "type": "text/plain"
          },
          "key": "pagination_key",
          "value": ""
        }
      ],
      "variable": []
    },
    "header": [
      {
        "disabled": false,
        "description": {
          "content": "(Required) A unique identifier issued to a developer for accessing an application's API.",
          "type": "text/plain"
        },
        "key": "x-app-key",
        "value": ""
      },
      {
        "disabled": false,
        "description": {
          "content": "(Required) A unique key issued to developers to access the application's API.",
          "type": "text/plain"
        },
        "key": "x-app-secret",
        "value": ""
      },
      {
        "disabled": false,
        "description": {
          "content": "(Required) Timestamp of the request, follows ISO8601 format: YYYY-MM-DDThh:mm:ssZ, e.g. 2023-07-16T19:23:51Z, only supports UTC time zone.",
          "type": "text/plain"
        },
        "key": "x-timestamp",
        "value": ""
      },
      {
        "disabled": false,
        "description": {
          "content": "(Required) Signature algorithm version, default is 1.0.",
          "type": "text/plain"
        },
        "key": "x-signature-version",
        "value": ""
      },
      {
        "disabled": false,
        "description": {
          "content": "(Required) Signature algorithm, default is HMAC-SHA1.",
          "type": "text/plain"
        },
        "key": "x-signature-algorithm",
        "value": ""
      },
      {
        "disabled": false,
        "description": {
          "content": "(Required) Signature unique random number.",
          "type": "text/plain"
        },
        "key": "x-signature-nonce",
        "value": ""
      },
      {
        "disabled": false,
        "description": {
          "content": "(Required) API interface version. Supported values: `v2`, `v3`.",
          "type": "text/plain"
        },
        "key": "x-version",
        "value": ""
      },
      {
        "disabled": false,
        "description": {
          "content": "(Required) A signature is a unique digital fingerprint, typically encrypted, that verifies the authenticity and integrity of a message or transaction, ensuring it has not been tampered with during transmission.",
          "type": "text/plain"
        },
        "key": "x-signature",
        "value": ""
      },
      {
        "key": "Accept",
        "value": "application/json"
      }
    ],
    "method": "GET"
  }
}
```
