Address First Funder
Returns the first funder of a wallet: the earliest address to send native gas to the input EVM address.
First funder = the first address to send native gas to this wallet, on whichever supported chain the earliest funding happened. This is the gas-funder / funding source, not the USDC (or any stablecoin) source. Usually the same entity (a CEX withdrawal drops both), but not guaranteed.
Notes
Input is any EVM address; non-EVM addresses are rejected.
chainis fixed toall— the first funder is resolved across chains and the returnedchainreflects where the first funding occurred.Returns a current, point-in-time view: there is no date-range parameter or historical look-back. See Data Coverage by Chain.
An empty result (
data: []) is returned when the wallet has no first-funder attribution — e.g. a wallet that was only ever credited by an exchange or bridge withdrawal that paid the gas on its behalf, so the wallet itself never received native gas. This is a normal200response, not an error.
Get the first wallet that funded the input EVM address. The first funder is the earliest address to send native gas to the wallet, returned with the Nansen label of that funder and the funding transaction details.
API key for authentication
EVM address to look up the first funder for
0x28c6c06298d514db089934071355e5743bf21d60Fixed to 'all'; the first funder is resolved across chains
allExample: allPossible values: Address first funder data
Bad Request
Unauthorized
Payment Required
Forbidden
Not Found
Unprocessable Content
Too Many Requests
Internal Server Error
Bad Gateway
Service Unavailable
Gateway Timeout
POST /api/v1/profiler/address/first-funder HTTP/1.1
Host: api.nansen.ai
apikey: YOUR_API_KEY
Content-Type: application/json
Accept: */*
Content-Length: 70
{
"address": "0x28c6c06298d514db089934071355e5743bf21d60",
"chain": "all"
}{
"pagination": {
"page": 1,
"per_page": 10,
"is_last_page": true
},
"data": [
{
"wallet_address": "text",
"first_funder_address": "text",
"first_funder_name": "text",
"transaction_hash": "text",
"block_timestamp": "text",
"chain": "text"
}
]
}Last updated
Was this helpful?