GET
/
chains
/
{chainId}
/
{contractAddress}
/
security
/
basic
curl --request GET \
  --url https://api.quantpilot.ai/chains/{chainId}/{contractAddress}/security/basic \
  --header 'x-api-key: <api-key>'
{
  "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"
}

Authorizations

x-api-key
string
header
required

API key for authentication

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

The response is of type object.