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='
{
  "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"
}

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)

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"