Search Audit By Address

GET https://www.cyberscope.io/api/audits/search-by-address

This API endpoint searches if Cyberscope has created an audit assessment for the specific address.

The query params must contain the contract's address (address), and optionally either the network identifier (network) or the chain id (chainId) that the address is deployed.

Example:

https://www.cyberscope.io/api/audits/search-by-address?address=0xd41c4805a9a3128f9f7a7074da25965371ba50d5 https://www.cyberscope.io/api/audits/search-by-address?address=0xd41c4805a9a3128f9f7a7074da25965371ba50d5&chainId=56 https://www.cyberscope.io/api/audits/search-by-address?address=0xd41c4805a9a3128f9f7a7074da25965371ba50d5&network=BSC

Rate Limit

The endpoint has a rate limit of 5 calls/minute, you may get a key for unrestricted access by contacting us at @raf_cyberscope.

Headers

NameValue

x-api-key

Include the API key in the header of your API requests to authenticate and authorize access without rate limits.

Query

NameTypeDescription

address

string

An EVM compatible address. e.g. 0xd41c4805a9a3128f9f7a7074da25965371ba50d5

chainId

number

The id of the chain that the address is deployed. Either network or chainId should be used.

1 (ETH), 56 (BSC), 137 (MATIC), 43114 (AVAX), 42161 (ARBITRUM), 81457 (BLAST), 2000 (DOGE), 25 (CRO), 8453 (BASE), 1666600000 (ONE), 250 (FTM), 321 (KCC), 8217 (KLAY), 40 (TELOS), 1285 (MOVR), 1284 (GLMR), 42220 (CELO), 106 (VLX), 61 (ETC), 10 (OPTIMISM), 100 (XDAI), 15551 (LOOP), 324 (ZKSYNC), 42262 (ROSE), 5 (GOERLI), 97 (BSC_TESTNET), 80001 (POLYGON_MUMBAI)

network

string

The network identifier that the address is deployed. Either network or chainId should be used. Default: BSC

ETH, BSC, MATIC, AVAX, ARBITRUM, BLAST, DOGE, CRO, BASE, ONE, FTM, KCC, KLAY, TELOS, MOVR, GLMR, CELO, VLX, ETC, OPTIMISM, XDAI, LOOP, ZKSYNC, ROSE, GOERLI, BSC_TESTNET, POLYGON_MUMBAI

Response

{
  "slug": "apeswap",
  "name": "Apeswap",
  "createdAt": "2024-01-13T09:22:28.813Z",
  "reportFile": "https://github.com/cyberscope-io/audits/blob/main/apeswap/audit.pdf",
  "reportUrl": "https://www.cyberscope.io/audits/apeswap",
  "finishedAt": "2024-01-15T19:38:00.041Z",
  "address": "0x92df60c51c710a1b1c20e42d85e221f3a1bfc7f2",
  "network": "ETH"
}

Last updated