(batch) Returns risky scores of a batch of addresses

(batch) Returns risky scores of a batch of addresses

Sample Request

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

Sample Response

{
  "code": 0,
  "data": [
    {
      "address": "0x934b510d4c9103e6a87aef13b816fb080286d649",
      "totalScore": 80,
      "highScore": 30,
      "mediumScore": 60,
      "lowScore": 100
    },
    {
      "address": "0xedd650a1b2d7e7049e1228bb5e60bd4cd5f7d67b",
      "totalScore": 99,
      "highScore": 100,
      "mediumScore": 60,
      "lowScore": 100
    },
    {
      "address": "0xd8da6bf26964af9d7eed9e03e53415d37aa96045",
      "totalScore": 86,
      "highScore": 100,
      "mediumScore": 100,
      "lowScore": 100
    }
  ],
  "uuid": 1735178942656831500
}
Language
Authorization
Header
Click Try It! to start a request and see the response here!