QuickScan API V1

Documentation of the QuickScan API

GET https://api.solidityscan.com/api/v1/quickscan/{platform_id}/{chain_id}/{contract_address}

SolidityScan Public API [Example]

curl --location --request GET 'https://api.solidityscan.com/api/v1/quickscan/1/1/0x4ee38aa8d7449a177119e983610D73e9ace932dA' \
--header 'Authorization: Token {{token}}'

This API will return the count of total vulnerabilities detected by SolidityScan and the security score of the Smart Contract for a contract address whose contract code is verified on the supported explorers.

Supported Explorers for Verified Contracts

The information about the supported Explorers can be found here

Accept application/json, text/plain, */* Accept-Language en-GB,en Connection keep-alive Content-Type application/json Authorization Token {{token}}

Parameters

platform_id

chain_id

Documentation of the QuickScan API for BuildBear Private Explorer

BuildBear is a platform where the developer can create their own private testnet, customized according to their own requirements. All Smart Contracts deployed and verified on BuildBear can also be scanned at SolidityScan for the count of total vulnerabilities

GET https://api.solidityscan.com/api/v1/quickscan/10/{testnet_id}/{contract_address}

curl --location --request GET 'https://api.solidityscan.com/api/v1/quickscan/10/Chief_Zam_Wesell_083680d0/0x7aedDA0c95e90d8c40c29621d8A7eb62F7702334'
  • header Authorization: Token {{token}}

Parameters

  • {{platform_id}} = 10

All BuildBear Private Testnet are recognized with the platform_id as 10

  • {{testnet_id}

All Private Testnets created on BuildBear have a unique name/id. This name is available from either the (a) RPC link, the (b) Explorer Link, or the (c) Faucet Link generated by BuildBear. Sample Screenshot from BuildBear below:

For the above Testnet: Accepted Mace Windu the explorer link is https://explorer.buildbear.io/Accepted_Mace_Windu_2561384 thus the {{testnet_id}} is Accepted_Mace_Windu_2561384

Last updated