CyberScan - Score API
Retrieve Contract Score of an address.
Headers Params
Name
Type
Description
Query Params
Name
Type
Description
Request Examples
curl --location 'https://app.cyberscope.io/api/score?address=0xB8c77482e45F1F44dE1745F52C74426C631bDD52&network=ETH' \
--header 'x-api-key: <your-api-key>'const axios = require('axios');
let config = {
method: 'get',
maxBodyLength: Infinity,
url: 'https://app.cyberscope.io/api/score?address=0xB8c77482e45F1F44dE1745F52C74426C631bDD52&network=ETH',
headers: {
'x-api-key': '<your-api-key>'
}
};
axios.request(config)
.then((response) => {
console.log(JSON.stringify(response.data));
})
.catch((error) => {
console.log(error);
});
Response
{
"success": true,
"message": "Score fetched successfully",
"score": 82
}{
"success": true,
"message": "Bad Request",
"score": null
}{
"success": false,
"message": "Invalid API key or API key not found"
}Steps to Create a API Key
Last updated


