For the complete documentation index, see llms.txt. This page is also available as Markdown.

CyberScan - Score API

Retrieve Contract Score of an address.

GET https://app.cyberscope.io/api/score

This endpoint returns the security score for a given blockchain address. To access this API, you must provide the blockchain address and network as query parameters, and include your x-api-key in the request headers and supported chains

Example: https://app.cyberscope.io/api/score?address=0xB8c77482e45F1F44dE1745F52C74426C631bDD52&network=ETH

Headers Params

Name
Type
Description

x-api-key*

String

Include the API key in the header of your API requests to authenticate.

Query Params

Name
Type
Description

address*

String

address The blockchain wallet address for which the request is made

network*

String

The blockchain network associated with the provided address (e.g. ETH, BNB,POL ,ARB, BASE).

Request Examples

curl --location 'https://app.cyberscope.io/api/score?address=0xB8c77482e45F1F44dE1745F52C74426C631bDD52&network=ETH' \
--header 'x-api-key: <your-api-key>'

Response

{
    "success": true,
    "message": "Score fetched successfully",
    "score": 82
}

Steps to Create a API Key

1

Log in to the Dashboard. If you don't have an account, sign up to create one.

2

From the sidebar, navigate to API Key Generation.

3

Click Create API Key to generate a new API key.

4

Copy the generated API key and use the API key to authenticate and test the Out Score API.

Last updated