---
title: "Get transfer history"
method: GET
path: "/v1/account/transfer-history"
tags: ["Account"]
---

# Get transfer history

`GET /v1/account/transfer-history`

Get deposit and withdrawal history for an account. Public endpoint - no authentication required.

## Query parameters

- `account` string
- `type` 'TRANSFER_UNKNOWN' | 'DEPOSIT' | 'WITHDRAW'
- `block_time_from` string, uint64
- `block_time_to` string, uint64
- `page` integer
- `limit` integer
- `token_address` string
- `sorted_by` string

## Response `200`

A successful response.

- ApiGetTransferHistoryResponse
  - `items` ApiTransferItem[]
    - `address` string
    - `type` 'TRANSFER_UNKNOWN' | 'DEPOSIT' | 'WITHDRAW'
    - `block_number` string, uint64
    - `transaction_hash` string
    - `token_address` string
    - `amount` string
    - `block_time` string, uint64
  - `page` integer
  - `has_next_page` boolean
  - `total_deposit` string
  - `total_withdraw` string

## Other responses

- `default` — An unexpected error response.

---

[API](https://skmtc.net/rise/apis/risex-rest-api.md) · [All operations](https://skmtc.net/rise/apis/risex-rest-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/rise/risex-rest-api/revisions/194af8339c0d/schema)
