---
title: "Wallet - Transfer"
method: POST
path: "/wallet/v2/transfer"
tags: ["Balance & Transfer"]
---

# Wallet - Transfer

`POST /wallet/v2/transfer`

Retrieve list transfer of the wallet.

## Headers

- `x-chain` 'solana'

## Request body

- WalletTransferBody
  - `wallet` string, required — Address of the wallet to retrieve transfers for.
  - `token_address` string — Address of the token to filter transfers by.
  - `flow` 'in' | 'out' — Transfer direction relative to the specified wallet. Use `in` for incoming transfers or `out` for outgoing transfers.
  - `time_from` number — Start of the transfer time range as a Unix timestamp.
  - `time_to` number — End of the transfer time range as a Unix timestamp.
  - `from_amount` number — Minimum token amount to include.
  - `to_amount` number — Maximum token amount to include.
  - `from_value` number — Minimum transfer value in USD to include.
  - `to_value` number — Maximum transfer value in USD to include.
  - `from_wallet` string — Address of the sender wallet to filter transfers by.
  - `to_wallet` string — Address of the recipient wallet to filter transfers by.
  - `cursor` string — Cursor used to retrieve the next page of results.
  - `limit` number — Maximum number of results to return.

## Response `200`

JSON object containing list transfer

- CommonResponseType
  - `success` boolean, required
  - `data` object, required

## Other responses

- `400` — Bad Request
- `401` — Unauthorized. API key is missing or invalid
- `403` — Forbidden. Request is blacklisted or not whitelisted
- `429` — Too Many Requests. Rate limit reached
- `500` — Internal Server Error

---

[API](https://skmtc.net/birdeye/apis/birdeye-data-api.md) · [All operations](https://skmtc.net/birdeye/apis/birdeye-data-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/birdeye/birdeye-data-api/revisions/fcaba926a089/schema)
