Address Related Wallets

Get Address Related Wallets Data

post

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
addressstringRequired

Address to get related wallets for

Example: 0x28c6c06298d514db089934071355e5743bf21d60
chainstring · enumRequired

Blockchain chain for the related wallets data

Example: ethereumPossible values:
order_byany ofOptional

Custom sort order to override the endpoint's default ordering

Responses
200

Address related wallets data

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?