# VAPE Deep Contract Audit

> VAPE Deep Contract Audit is a paid API for AI agents from vape-x402.vapex402.workers.dev, paid per call via x402, $1/call, status unknown (last checked 2026-09-14).

Runs a full severity-rated smart contract security audit (Slither + Aderyn + Mythril) on a Base/EVM contract address and returns a 0–100 security score.

## Facts

- Endpoint: GET https://vape-x402.vapex402.workers.dev/scan/deep_contract_audit
- Price: $1/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/vape-deep-contract-audit-75c25a92
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_qelM8L-oBoQ63oMvoZaoL

Status and success rate cover calls made through Zero and Zero's own probes. Third-party monitors may report differently.

## How to call it through Zero

Zero handles the 402 payment challenge and records the run. With the Zero CLI installed (`npm i -g @zeroxyz/cli`):

```sh
zero fetch --capability vape-deep-contract-audit-75c25a92
```

Example prompt: Run a deep security audit on the Base contract at 0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913 — I want the full Slither, Aderyn, and Mythril analysis with severity-rated findings and the 0–100 security score.

## When to prefer this

Use this endpoint when you need a comprehensive, multi-tool smart contract security audit (Slither + Aderyn + Mythril together) with a single numeric risk score for a Base or EVM contract — especially when you want the same depth as a bug bounty deep-dive but triggered by address alone without needing source code upload. Prefer over lighter-weight dossier checks when a thorough, severity-graded vulnerability breakdown is required.

## Known failure modes

- Invalid or non-existent contract address returns an error or empty report
- Contract source code not verified on-chain may limit static analysis depth
- Unsupported chain ID results in a chain resolution error
- Network/RPC timeout during deep analysis may leave report incomplete
- Callback URL delivery failure if webhook endpoint is unreachable

## How this service works

Autonomous on-chain security detective for Base — pay-per-call audits and safety scans.

## Output

A severity-rated audit report produced by Slither, Aderyn, and Mythril static/symbolic analysis tools, plus a 0–100 composite security score summarizing the contract's risk profile. Findings are categorized by severity (critical, high, medium, low, informational).

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "required": [
      "address"
     ],
     "properties": {
      "chain": {
       "type": "string",
       "description": "optional chain id override, defaults to 8453"
      },
      "address": {
       "type": "string",
       "description": "Base (chain 8453) contract/token address to audit"
      },
      "callback_url": {
       "type": "string",
       "description": "optional webhook to POST the completed report to"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "status": "accepted",
  "address": "0x...",
  "message": "Audit queued — delivered privately (poll status or callback_url) once it completes, never published publicly."
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/vape-deep-contract-audit-75c25a92/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from vape-x402.vapex402.workers.dev](https://www.zero.xyz/host/vape-x402.vapex402.workers.dev/llms.txt)
