---
title: "List account's transfers, i.e. deposits and withdrawals"
method: GET
path: "/transfers"
tags: ["Transfers"]
---

# List account's transfers, i.e. deposits and withdrawals

`GET /transfers`

## Query parameters

- `cursor` string
- `end_at` integer
- `page_size` integer
- `start_at` integer
- `status` 'PENDING' | 'AVAILABLE' | 'COMPLETED' | 'FAILED'

## Response `200`

OK

- object
  - `next` string — The pointer to fetch next set of records (null if there are no records left)
  - `prev` string — The pointer to fetch previous set of records (null if there are no records left)
  - `results` object[] — Array of paginated results
    - `account` string — Starknet Account address
    - `amount` string — Transferred amount
    - `auto_withdrawal_fee` string — Fee for auto withdrawal in USDC
    - `bridge` '' | 'STARKGATE' | 'LAYERSWAP' | 'RHINOFI' | 'HYPERLANE'
    - `counterparty` string — Counterparty address
    - `created_at` integer — Unix Millis timestamp transfer was created on L2
    - `direction` 'IN' | 'OUT'
    - `external_account` string — External chain account address
    - `external_chain` string — External chain used for the transfer
    - `external_txn_hash` string — Transaction hash on the external chain
    - `failure_reason` string — Reason for transfer failure
    - `id` string — Transfer auto-generated ID
    - `kind` 'DEPOSIT' | 'WITHDRAWAL' | 'UNWINDING' | 'VAULT_DEPOSIT' | 'VAULT_WITHDRAWAL' | 'AUTO_WITHDRAWAL' | 'AIRDROP'
    - `last_updated_at` integer — Unix Millis timestamp transfer was last updated on L2
    - `socialized_loss_factor` string — Withdrawal's socialized loss factor
    - `status` 'PENDING' | 'AVAILABLE' | 'COMPLETED' | 'FAILED'
    - `token` string — Transferred token name
    - `txn_hash` string — Transaction hash on Paradex chain
    - `vault_address` string — Vault address
    - `vault_unwind_completion_percentage` string — Vault unwind completion percentage

## Other responses

- `400` — Bad Request

---

[API](https://skmtc.net/tradeparadex/apis/paradex-rest-api-2.md) · [All operations](https://skmtc.net/tradeparadex/apis/paradex-rest-api-2/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/tradeparadex/paradex-rest-api-2/versions/6a76453d754c/schema)
