Address Related Wallets
Deprecation Notice: The /beta
API endpoints will be deprecated on 01 October 2025. Please migrate your integrations to the /v1
endpoints before this date to ensure uninterrupted service.
This model provides information about related wallets of an input address. The relation can be any of 'First Funder', 'Signer', 'Previous Signer', 'Multisig Signer of', 'Previous Multisig Signer of', 'Deployed via', 'Deployed by', 'Deployed Contract', 'Created Contract', 'Created by'.
Questions you can answer using this model are:
What addresses are related to a specific address?
In which way is an address related to other addresses?
Did the specified address deploy any contracts?
Where did the specified address get its first funds from?
Successful response
Bad request
Authentication error
Forbidden - Subscription tier required
Internal server error
POST /api/beta/profiler/address/related-wallets HTTP/1.1
Host: api.nansen.ai
apiKey: YOUR_API_KEY
Content-Type: application/json
Accept: */*
Content-Length: 145
{
"parameters": {
"chain": "ethereum",
"walletAddresses": [
"0x28c6c06298d514db089934071355e5743bf21d60"
]
},
"pagination": {
"page": 1,
"recordsPerPage": 100
}
}
[
{
"addressHex": "text",
"addressName": "text",
"relation": "text",
"transactionHash": "text"
}
]
Last updated
Was this helpful?