Fast automated static analysis of Solidity source with a clear risk-level assessment. Returns a job ID, an overall risk rating, and any detected issues.

  • Automated Solidity vulnerability scanning
  • Clear overall risk level (Informational → Critical)
  • Returns a job ID + detailed findings

Returns

job_idstringJob ID
overall_riskstringOverall Risk Level

Call it directly

curl -i -X POST "https://centry.cybercentry.co.uk/api/services/solidity_code_verification" \
  -H "Content-Type: application/json" \
  -d '{"solidity_code":"// SPDX-License-Identifier: MIT\npragma solidity ^0.8.20;\ncontract Vault { mapping(address => uint) public bal; function withdraw() external { (bool ok,) = msg.sender.call{value: bal[msg.sender]}(\"\"); require(ok); bal[msg.sender] = 0; } }"}'

POST JSON (canonical) · GET query params also works · unpaid requests return 402 · see the payment flow.