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

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

response = requests.get(url)

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

fetch('https://api.helius.xyz/v1/wallet/{wallet}/funded-by?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}/funded-by?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}/funded-by?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}/funded-by?api-key=")
.asString();
require 'uri'
require 'net/http'

url = URI("https://api.helius.xyz/v1/wallet/{wallet}/funded-by?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
{
  "funder": "2ojv9BAiHUrvsm9gxDe7fJSzbNZSJcxZvf8dqmWGHG8S",
  "mint": "So11111111111111111111111111111111111111112",
  "symbol": "SOL",
  "amount": 0.05,
  "amountRaw": "50000000",
  "decimals": 9,
  "signature": "5wHu1qwD7Jsj3xqWjdSEJmYr3Q5f5RjXqjqQJ7jqEj7jqEj7jqEj7jqEj7jqEj7jqE",
  "timestamp": 1704067200,
  "date": "2024-01-01T00:00:00.000Z",
  "slot": 250000000,
  "explorerUrl": "https://orbmarkets.io/tx/5wHu1qwD7Jsj3xqWjdSEJmYr3Q5f5RjXqjqQJ7jqEj7jqEj7jqEj7jqEj7jqEj7jqE",
  "funderName": "Coinbase 2",
  "funderType": "exchange"
}
{
"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": "Invalid wallet address",
"code": 400,
"details": "'invalid-address' is not a valid Solana address"
}
{
"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. Requires a paid plan. Free-plan requests return 403 Forbidden.

Request Parameters

wallet
string
required
Solana wallet address (base58 encoded)

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}$

Response

Funding source identified

funder
string
required

Address that originally funded this wallet

Example:

"2ojv9BAiHUrvsm9gxDe7fJSzbNZSJcxZvf8dqmWGHG8S"

mint
string
required

Token mint address (So11111111111111111111111111111111111111112 for SOL)

Example:

"So11111111111111111111111111111111111111112"

symbol
string
required

Token symbol

Example:

"SOL"

amount
number
required

Initial funding amount (human-readable, in SOL)

Example:

0.05

amountRaw
string
required

Raw funding amount in smallest unit (lamports for SOL)

Example:

"50000000"

decimals
integer
required

Token decimals

Example:

9

signature
string
required

Transaction signature of the funding transfer

Example:

"5wHu1qwD7Jsj3xqWjdSEJmYr3Q5f5RjXqjqQJ7jqEj7jqEj7jqEj7jqEj7jqEj7jqE"

timestamp
integer
required

Unix timestamp in seconds

Example:

1704067200

date
string<date-time>
required

Human-readable UTC date in ISO 8601 format

Example:

"2024-01-01T00:00:00.000Z"

slot
integer
required

Slot number

Example:

250000000

explorerUrl
string
required

Solana Explorer URL for the transaction

Example:

"https://orbmarkets.io/tx/5wHu1qwD7Jsj3xqWjdSEJmYr3Q5f5RjXqjqQJ7jqEj7jqEj7jqEj7jqEj7jqEj7jqE"

funderName
string | null

Name of the funder if it's a known entity

Example:

"Coinbase 2"

funderType
string | null

Type of the funder entity

Example:

"exchange"