Skip to main content
GET
/
v1
/
wallet
/
{wallet}
/
transfers
Get token transfers
curl --request GET \
  --url 'https://api.helius.xyz/v1/wallet/{wallet}/transfers?api-key='
import requests

url = "https://api.helius.xyz/v1/wallet/{wallet}/transfers?api-key="

response = requests.get(url)

print(response.text)
const options = {method: 'GET'};

fetch('https://api.helius.xyz/v1/wallet/{wallet}/transfers?api-key=', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));
<?php

$curl = curl_init();

curl_setopt_array($curl, [
CURLOPT_URL => "https://api.helius.xyz/v1/wallet/{wallet}/transfers?api-key=",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
]);

$response = curl_exec($curl);
$err = curl_error($curl);

curl_close($curl);

if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}
package main

import (
"fmt"
"net/http"
"io"
)

func main() {

url := "https://api.helius.xyz/v1/wallet/{wallet}/transfers?api-key="

req, _ := http.NewRequest("GET", url, nil)

res, _ := http.DefaultClient.Do(req)

defer res.Body.Close()
body, _ := io.ReadAll(res.Body)

fmt.Println(string(body))

}
HttpResponse<String> response = Unirest.get("https://api.helius.xyz/v1/wallet/{wallet}/transfers?api-key=")
.asString();
require 'uri'
require 'net/http'

url = URI("https://api.helius.xyz/v1/wallet/{wallet}/transfers?api-key=")

http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true

request = Net::HTTP::Get.new(url)

response = http.request(request)
puts response.read_body
{
  "data": [
    {
      "signature": "5wHu1qwD7Jsj3xqWjdSEJmYr3Q5f5RjXqjqQJ7jqEj7jqEj7jqEj7jqEj7jqEj7jqE",
      "timestamp": 1704067200,
      "direction": "in",
      "counterparty": "HXsKP7wrBWaQ8T2Vtjry3Nj3oUgwYcqq9vrHDM12G664",
      "mint": "So11111111111111111111111111111111111111112",
      "amount": 1.5,
      "amountRaw": "1500000000",
      "decimals": 9,
      "symbol": "SOL"
    }
  ],
  "pagination": {
    "hasMore": true,
    "nextCursor": "5wHu1qwD7Jsj3xqWjdSEJmYr3Q5f5RjXqjqQJ7jqEj7jqEj7jqEj7jqEj7jqEj7jqE"
  }
}
{
"error": "Invalid wallet address",
"code": 400,
"details": "'invalid-address' is not a valid Solana address"
}
{
"error": "API key required. Pass via ?api-key=xxx or X-Api-Key header",
"code": 401
}
{
"error": "RATE_LIMIT_EXCEEDED",
"code": 429,
"details": "Too many requests. Retry after 2 seconds."
}
{
"error": "INTERNAL_ERROR",
"code": 500,
"details": "An unexpected error occurred. Please retry."
}
Each request costs 100 credits.

Request Parameters

wallet
string
required
Solana wallet address (base58 encoded)
limit
number
default:"50"
Maximum number of transfers to return
cursor
string
Pagination cursor from previous response

Authorizations

api-key
string
query
required

API key passed as query parameter

Path Parameters

wallet
string
required

Solana wallet address (base58 encoded)

Pattern: ^[1-9A-HJ-NP-Za-km-z]{32,44}$

Query Parameters

limit
integer
default:50

Maximum number of transfers to return

Required range: 1 <= x <= 100
cursor
string

Pagination cursor from previous response

Response

Transfer history retrieved successfully

data
object[]
required
pagination
object
required