# VAPE Dossier Check — Deep Token Security & Reputation Audit

> VAPE Dossier Check — Deep Token Security & Reputation Audit is a paid API for AI agents from vape-x402.vapex402.workers.dev, paid per call via x402, $0.1/call, status unknown (last checked 2026-09-14).

Performs a comprehensive on-chain and off-chain security audit of a token/contract address, combining CertiK-style weighted scoring, meme-template detection, hack correlation, social verification, and LLM source analysis using real GoPlus/DexScreener data.

## Facts

- Endpoint: GET https://vape-x402.vapex402.workers.dev/scan/dossier_check
- Price: $0.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-dossier-check-deep-token-security-reputation-audit-f969ec6d
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_bg8E1Lub0Q8__acF2XhjK

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-dossier-check-deep-token-security-reputation-audit-f969ec6d
```

Example prompt: Run a full VAPE dossier check on the Base chain token at address 0x4ed4E862860beD51a9570b96d89aF5E1B0Efefed — I want the weighted security score, any hack correlations, social verification, and the LLM read of its source code.

## When to prefer this

Choose this endpoint when you need the most thorough available token security assessment combining multiple signals — security scoring, template detection, hack history, social verification, and AI source review — rather than a simple price check (use token_intel) or protocol TVL lookup (use protocol). Ideal for due diligence before investing or interacting with an unfamiliar token on Base or other EVM chains.

## Known failure modes

- Invalid or unrecognized contract address returns error or empty result
- Address not deployed on specified chain returns chain mismatch error
- Unverified source code prevents LLM analysis component
- Rate limiting or payment failure returns 402 or 429 error
- Social links not declared on-chain or in metadata causes social check to be skipped

## How this service works

VAPE dossier_check — VAPE's deepest instant verdict: weighted 0-100 risk score, meme-factory-template detection, recent-hack correlation, public web-reputation search, a live check of the project's declared socials, and a frontier-LLM quick read of the verified source. Real on-chain/market data, no simulation.

## Output

Returns a comprehensive dossier including a weighted CertiK-style security score (0-1), meme-factory template detection flag, correlation with known hacked contracts, public web reputation signals, live social account verification status for the project's declared socials, and a frontier LLM analysis of the verified contract source code — all sourced from real GoPlus and DexScreener data.

## 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 analyze"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "name": "Token Name",
  "score": 82,
  "symbol": "TOKEN",
  "address": "0x...",
  "reasons": [],
  "verdict": "PROCEED",
  "verified": true,
  "ai_review": {
   "summary": "...",
   "provider": "gemini",
   "available": true
  },
  "web_reputation": {
   "checked": true,
   "flagged": false
  },
  "hack_correlation": [],
  "positive_signals": [],
  "social_verification": {
   "declared_count": 2
  },
  "meme_factory_template": false
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/vape-dossier-check-deep-token-security-reputation-audit-f969ec6d/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)
