---
title: "Transfers"
method: GET
path: "/api/v1/developer/tokens/transfers"
tags: ["TOKENS", "DEVELOPER"]
---

# Transfers

`GET /api/v1/developer/tokens/transfers`

Provides transfer history for a single wallet

## Query parameters

- `chain` string, required — Chain to get transfers for.
- `address` string — Address to get transfers for.
- `cursor` string — Cursor to paginate results.
- `limit` integer — Limit the number of items in the response. Default is 15.
- `token` string — Exclude transfers for other tokens
- `transfer_type` 'sent' | 'received' | 'any' — Direction of the transfer. Defaults to 'any'. Can only be specified when using the address filter
- `min_timestamp` string — Exclude transfers before this time
- `max_timestamp` string — Exclude transfers after this time
- `direction` 'asc' | 'desc' — Direction to sort by

## Response `200`

Successful Response

- WalletTransfersEnvelope
  - `items` union, required
    - SolanaTransfer[]
      - `block_slot` integer, required
      - `block_height` integer, required
      - `block_timestamp` string, date-time, required
      - `block_hash` string, required
      - `txn_id` string, required
      - `txn_index` integer, required
      - `instruction_index` integer, required
      - `inner_instruction_index` integer, nullable, required
      - `from_account` string, required
      - `to_account` string, required
      - `from_token_account` string, nullable, required
      - `to_token_account` string, nullable, required
      - `mint` string, required
      - `value` integer, required
      - `decimals` integer, required
      - `signer` string, required
    - ApiServerAppServicesTransfersEvmEVMTransfer[]
      - `caller` string, nullable — Address that initiated the transfer/called the transfer/transferFrom method.
      - `token_address` string, required
      - `value` integer, required
      - `value_str` string, required
      - `from_address` string, required
      - `to_address` string, nullable, required
      - `transaction_hash` string, required
      - `log_index` integer, required
      - `block_timestamp` string, date-time, required
      - `block_number` integer, required
      - `block_hash` string, required
      - `transaction_index` integer, required
  - `cursor` string, nullable, required

## Other responses

- `422` — Validation Error

---

[API](https://skmtc.net/allium/apis/allium-account-api.md) · [All operations](https://skmtc.net/allium/apis/allium-account-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/allium/allium-account-api/versions/6c79c032c85d/schema)
