# List Account Cash Activities

Retrieves account transaction activities records with details.

# 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/activities/cash-activities/list",
  "method": "get",
  "tags": [
    "Activity"
  ],
  "description": "Retrieves account transaction activities records with details.",
  "operationId": "brokerCashActivityByType",
  "parameters": [
    {
      "name": "account_id",
      "in": "query",
      "description": "Provide the target account id",
      "required": true,
      "schema": {
        "type": "String"
      },
      "example": "943a9802f6c14983b3b4755c69c01717"
    },
    {
      "name": "activity_types",
      "in": "query",
      "description": "Account activity types",
      "required": false,
      "schema": {
        "type": "string",
        "enum": [
          "TRADE",
          "DEPOSIT",
          "WITHDRAW",
          "FEES",
          "JOURNAL",
          "TRANSFER",
          "INTERESTS",
          "EC_STATEMENT"
        ]
      },
      "example": "DEPOSIT,TRADE"
    },
    {
      "name": "start_time",
      "in": "query",
      "description": "Activity query start time, time in ISO8601 format (UTC). Format: yyyy-MM-dd'T'HH:mm:ss.SSS'Z'",
      "required": false,
      "schema": {
        "type": "String"
      },
      "example": "2025-01-05T22:59:59.012Z"
    },
    {
      "name": "end_time",
      "in": "query",
      "description": "If not provided, the default query is the last 7 days.<br/>Activity query end time, time in ISO8601 format (UTC). Format: yyyy-MM-dd'T'HH:mm:ss.SSS'Z'",
      "required": false,
      "schema": {
        "type": "String"
      },
      "example": "2025-01-06T22:59:59.012Z"
    },
    {
      "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",
                    "activity_sub_type",
                    "activity_type",
                    "biz_time",
                    "currency",
                    "id",
                    "net_amount",
                    "trade_date"
                  ],
                  "type": "object",
                  "properties": {
                    "id": {
                      "type": "string",
                      "description": "Unique ID",
                      "example": "a1b2c3d4e5f6g7h8i9j0"
                    },
                    "account_id": {
                      "type": "string",
                      "description": "Account ID",
                      "example": "943a9802f6c14983b3b4755c69c01717"
                    },
                    "activity_type": {
                      "type": "string",
                      "description": "Activity Type\n| Code          | Description                     |\n|---------------|---------------------------------|\n|TRADE \t     | Trade Activity Type             |\n|DEPOSIT \t\t | Deposit Activity Type           |\n|WITHDRAW \t\t | Withdraw Activity Type          |\n|FEES \t\t\t | Fees Activity Type              |\n|JOURNAL \t\t | Journal Activity Type           |\n|TRANSFER \t\t | Transfer Activity Type          |\n|INTERESTS \t | Interests Activity Type         |\n|EC_STATEMENT \t | EC Statement Activity Type      |\n|OTHER \t\t | Other Activity Type             |",
                      "example": "TRADE",
                      "enum": [
                        "TRADE",
                        "DEPOSIT",
                        "WITHDRAW",
                        "FEES",
                        "JOURNAL",
                        "TRANSFER",
                        "INTERESTS",
                        "EC_STATEMENT"
                      ]
                    },
                    "activity_sub_type": {
                      "type": "string",
                      "description": "Activity Type and Sub Type Mapping.\n| ActivityType   | ActivitySubType                     |\n|----------------|-------------------------------------|\n| TRADE          | BTO                      \t\t\t|\n| TRADE          | STC                      \t\t\t|\n| DEPOSIT        | ACH                                 |\n| DEPOSIT        | WIRE                                |\n| DEPOSIT        | WIRE_REVERSE                        |\n| DEPOSIT        | ACH_REVERSE                         |\n| WITHDRAW       | ACH                                 |\n| WITHDRAW       | WIRE                                |\n| WITHDRAW       | ACH_REVERSE                         |\n| WITHDRAW       | WIRE_REVERSE                        |\n| FEES           | WIRE_DEPOSIT                        |\n| FEES           | WIRE_WITHDRAW                       |\n| FEES           | ACH_REVERSAL                        |\n| FEES           | WIRE_REVERSAL                       |\n| FEES           | SERVICE_FEE                         |\n| FEES           | ADR                                 |\n| FEES           | TRANSFER_ACATS                      |\n| FEES           | PAPER_CONFIRM_FEE                   |\n| FEES           | PAPER_STATEMENT_FEE                 |\n| FEES           | WRITE_OFF                           |\n| FEES           | PROCESSING_FEE                      |\n| FEES           | COMMISSION                          |\n| FEES           | TRANSFER_FOP                        |\n| FEES           | MONTH_END_REPORT_CHARGES            |\n| FEES           | FINANCIAL_TRANSACTION_TAX           |\n| FEES           | SETTLEMENT_FEE                      |\n| FEES           | TRANSACTION_FEE                     |\n| JOURNAL        | CASH_JOURNAL                        |\n| JOURNAL        | CREDIT                              |\n| TRANSFER        | INTERNAL_THIRD_PARTY_TRANSFER      |\n| INTERESTS      | CREDIT_CASH                         |\n| EC_STATEMENT   | EC_EXPIRATION                       |\n| EC_STATEMENT   | EC_PAYOUT                           |\n| OTHER          | OTHER                               |",
                      "example": "BTO",
                      "enum": [
                        "BTO",
                        "STC",
                        "WIRE",
                        "ACH",
                        "WIRE_REVERSE",
                        "ACH_REVERSE",
                        "WIRE_DEPOSIT",
                        "WIRE_WITHDRAW",
                        "ACH_REVERSAL",
                        "WIRE_REVERSAL",
                        "CASH_JOURNAL",
                        "INTERNAL_THIRD_PARTY_TRANSFER",
                        "CREDIT",
                        "CREDIT_CASH",
                        "EC_EXPIRATION",
                        "EC_PAYOUT",
                        "OTHER"
                      ]
                    },
                    "currency": {
                      "type": "string",
                      "description": "Currency",
                      "example": "USD",
                      "enum": [
                        "USD"
                      ]
                    },
                    "market": {
                      "type": "string",
                      "description": "Market Code<br/>US - US Market<br/>",
                      "example": "US",
                      "enum": [
                        "US"
                      ]
                    },
                    "symbol": {
                      "type": "string",
                      "description": "Activity Symbol",
                      "example": "AAPL"
                    },
                    "trade_date": {
                      "type": "string",
                      "description": "Accounting date of the transaction (trade date), format: yyyy-MM-dd",
                      "example": "2024-05-01"
                    },
                    "net_amount": {
                      "type": "string",
                      "description": "Net change amount of the transaction (positive for credit, negative for debit)",
                      "example": "1500.0"
                    },
                    "biz_time": {
                      "type": "string",
                      "description": "Business event time when the transaction occurred",
                      "example": "2024-05-01T10:15:30.691Z"
                    }
                  },
                  "description": "Activity Cash Result",
                  "title": "ActivityCashResult"
                }
              },
              "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": "PaginatedResultVoActivityCashResult"
          }
        }
      }
    },
    "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 Account Cash Activities",
    "description": {
      "content": "Retrieves account transaction activities records with details.",
      "type": "text/plain"
    },
    "url": {
      "path": [
        "broker",
        "activities",
        "cash-activities",
        "list"
      ],
      "host": [
        "{{baseUrl}}"
      ],
      "query": [
        {
          "disabled": false,
          "description": {
            "content": "(Required) Provide the target account id",
            "type": "text/plain"
          },
          "key": "account_id",
          "value": ""
        },
        {
          "disabled": false,
          "description": {
            "content": "Account activity types",
            "type": "text/plain"
          },
          "key": "activity_types",
          "value": ""
        },
        {
          "disabled": false,
          "description": {
            "content": "Activity query start time, time in ISO8601 format (UTC). Format: yyyy-MM-dd'T'HH:mm:ss.SSS'Z'",
            "type": "text/plain"
          },
          "key": "start_time",
          "value": ""
        },
        {
          "disabled": false,
          "description": {
            "content": "If not provided, the default query is the last 7 days.<br/>Activity query end time, time in ISO8601 format (UTC). Format: yyyy-MM-dd'T'HH:mm:ss.SSS'Z'",
            "type": "text/plain"
          },
          "key": "end_time",
          "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"
  }
}
```
