divide addresses into different entities

divide input addresses into different entities

Sample Request

curl --request POST \
     --url https://api.0xscope.com/v2/entity/clusters \
     --header 'API-KEY: your-api-key' \
     --header 'accept: */*' \
     --header 'content-type: application/json' \
     --data '
{
  "addresses": [
    "0xcc6cdD3b84BeE496b94F223d049Ca6638B05e507",
    "0xd81cc51b50eb1c254947971fcca4f24a1208c5a2",
    "0x934b510d4c9103e6a87aef13b816fb080286d649"
  ],
  "chain": "ethereum"
}
'

Sample Response

{
  "code": 0,
  "data": [
    [
      "0x934b510d4c9103e6a87aef13b816fb080286d649"
    ],
    [
      "0xcc6cdd3b84bee496b94f223d049ca6638b05e507",
      "0xd81cc51b50eb1c254947971fcca4f24a1208c5a2"
    ]
  ],
  "uuid": 1656868483679780900
}
Language
Authorization
Header
Click Try It! to start a request and see the response here!