Address Related Wallets
Get wallets that are related to the input address through various types of blockchain interactions and relationships. Returns detailed information about each related wallet including the relationship type, transaction details, and timing information.
Authorizations
Body
addressstringRequiredExample:
Address to get related wallets for
0x28c6c06298d514db089934071355e5743bf21d60
chainstring · enumRequiredExample:
Blockchain chain for the related wallets data
ethereum
Possible values: order_byany ofOptional
Custom sort order to override the endpoint's default ordering
Responses
200
Address related wallets data
application/json
400
Bad Request
application/json
401
Unauthorized
application/json
403
Forbidden
application/json
404
Not Found
application/json
422
Unprocessable Content
application/json
429
Too Many Requests
application/json
500
Internal Server Error
application/json
post
POST /api/v1/profiler/address/related-wallets HTTP/1.1
Host: api.nansen.ai
apiKey: YOUR_API_KEY
Content-Type: application/json
Accept: */*
Content-Length: 162
{
"address": "0x28c6c06298d514db089934071355e5743bf21d60",
"chain": "ethereum",
"pagination": {
"page": 1,
"per_page": 10
},
"order_by": [
{
"field": "order",
"direction": "ASC"
}
]
}
{
"pagination": {
"page": 1,
"per_page": 10,
"is_last_page": true
},
"data": [
{
"address": "text",
"address_label": "text",
"relation": "text",
"transaction_hash": "text",
"block_timestamp": "text",
"order": 1,
"chain": "text"
}
]
}
Last updated
Was this helpful?