GET
/
chains
/
{chainId}
/
{contractAddress}
/
security
/
basic
curl --request GET \
  --url https://api.quantpilot.ai/chains/{chainId}/{contractAddress}/security/basic
{
  "verified": true,
  "audited": true,
  "auditReports": [
    {
      "auditor": "CertiK",
      "date": "2023-12-01",
      "link": "https://certik.com/reports/example"
    }
  ],
  "honeypotRisk": "none",
  "rugpullRisk": "low",
  "maliciousFunctions": [],
  "ownerFunctions": [
    {
      "name": "setFees",
      "risk": "medium",
      "description": "Allows owner to modify transaction fees"
    }
  ],
  "overallRisk": "low"
}

Path Parameters

chainId
enum<string>
required
Available options:
eth,
bsc,
arb,
op
contractAddress
string
required

Token contract address

Response

200 - application/json
Basic security analysis
verified
boolean

Whether the contract is verified on the blockchain explorer

audited
boolean

Whether the contract has been audited

auditReports
object[]
honeypotRisk
enum<string>

Risk of contract being a honeypot

Available options:
none,
low,
medium,
high,
critical
rugpullRisk
enum<string>

Risk of contract being a rug pull

Available options:
none,
low,
medium,
high,
critical
maliciousFunctions
object[]
ownerFunctions
object[]
overallRisk
enum<string>

Overall risk assessment

Available options:
none,
low,
medium,
high,
critical