Address Related Wallets
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?
Authorizations
Body
Responses
200
Successful response
application/json
400
Bad request
application/json
401
Authentication error
application/json
403
Forbidden - Subscription tier required
application/json
500
Internal server error
application/json
post
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?