---
title: "Get Account Statement"
method: POST
path: "/wallets/get/account/statement"
---

# Get Account Statement

`POST /wallets/get/account/statement`

Get a list of transactions associated with this account

## Headers

- `api-key` string, required
- `Authorization` string, required

## Request body

- object
  - `userId` string, required — Unique Id of the user for whom this wallet is being created
  - `accountId` string, required — Unique Id of an account belonging to any wallet of this user
  - `startDate` string, date-time, required — Format as a UNIX Epoch timestamp with ms precision
  - `endDate` string, date-time, required — Format as a UNIX Epoch timestamp with ms precision
  - `page` integer, required — Page number
  - `limit` integer — This parameter specifies the maximum number of results to be returned, Please note that the maximum limit is capped at 100 for each request.

## Response `200`

200

- object
  - `transactions` object[]
    - `id` string
    - `accountId` string
    - `syncedOwnerId` string
    - `sourceSyncedOwnerId` string
    - `credit` string
    - `timestamp` string
    - `txType` string
    - `memo` string
    - `currency` string
    - `exchangeRate` string
    - `balanceBefore` object
      - `amount` string
      - `balance` string
      - `currency` string
    - `balanceAfter` object
      - `amount` string
      - `balance` string
      - `currency` string
    - `blockchainSourceAddress` string
    - `txHash` string
    - `blockchainDepositAddress` string
    - `blockchainConfirmations` integer
    - `blockchainTransactionAmount` string
    - `blockchainNetwork` string
  - `count` integer
  - `total` integer

---

[API](https://skmtc.net/striga/apis/striga-v1.md) · [All operations](https://skmtc.net/striga/apis/striga-v1/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/striga/striga-v1/versions/63e57aa7df45/schema)
