Skip to main content
🚧 Coming soon This endpoint isn’t live yet, but it’s on the way. If you’d like early access or updates, please get in touch.

Endpoint

GET /risk/contract/{contractAddress}

Description

Returns a risk profile for the specified smart contract address on Solana, including risk score, vulnerabilities, and contract metadata.

Path Parameters

  • contractAddress (string, required): The Solana smart contract address to assess.

Response Example

{
  "contractAddress": "...",
  "riskScore": 85,
  "riskLevel": "High",
  "vulnerabilities": ["Upgradeable contract", "No verified source code"],
  "metadata": {
    "name": "ExampleContract"
  }
}

Notes

  • Only available for Solana smart contracts.
  • Use this endpoint to evaluate the risk of interacting with a contract.