# VAPE Website Review — Phishing & Scam-Page Red Flag Scanner

> VAPE Website Review — Phishing & Scam-Page Red Flag Scanner is a paid API for AI agents from vape-x402.vapex402.workers.dev, paid per call via x402, $0.15/call, status unknown (last checked 2026-09-14).

Scrapes a website and uses a frontier LLM to detect phishing/scam red flags including fake contract addresses, wallet-drainer patterns, brand impersonation, and copy-paste scam boilerplate.

## Facts

- Endpoint: GET https://vape-x402.vapex402.workers.dev/scan/website_review
- Price: $0.15/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/vape-website-review-phishing-scam-page-red-flag-scanner-8c5ad6bf
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_aNThQrU-oiB1Xx76rP_IO

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-website-review-phishing-scam-page-red-flag-scanner-8c5ad6bf
```

Example prompt: Can you scan https://supersafetoken-airdrop.xyz for scam red flags — I want to know if it has fake contract addresses, wallet-drainer patterns, or looks like a copy-paste phishing site impersonating a real project?

## When to prefer this

Use this endpoint when you need a quick, low-cost ($0.15) red-flag read on a web3/crypto website before interacting with it — ideal for detecting phishing clones, fake token sites, wallet drainers, and scam boilerplate. This is NOT a smart-contract audit (use bounty_deep_dive for that) and NOT a token fundamentals check (use token_intel or dossier_check for that). Best when the primary concern is whether the website itself is a scam page.

## Known failure modes

- Website is unreachable or returns non-200 status — scan fails with an error
- Website blocks scraping (Cloudflare, bot protection) — incomplete or failed analysis
- URL parameter missing or malformed — 400 validation error
- False negatives on sophisticated novel scams not matching known patterns
- False positives on legitimate sites with unusual layouts

## How this service works

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

## Output

A structured red-flag analysis of the target website including: identified phishing indicators, fake or suspicious contract addresses, wallet-drainer code patterns, brand mismatch signals, copy-paste scam boilerplate detection, and an overall risk verdict — all derived from a live scrape of the page read by a frontier LLM.

## 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": [
      "url"
     ],
     "properties": {
      "url": {
       "type": "string",
       "description": "http(s) URL of the website to review"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "url": "https://example.com",
  "summary": "The page pressures visitors to connect a wallet immediately via a countdown timer...",
  "verdict": "SUSPICIOUS",
  "reachable": true,
  "red_flags": [
   "urgency/countdown pressure tactic",
   "unsolicited wallet-connect prompt"
  ],
  "scrape_provider": "firecrawl"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/vape-website-review-phishing-scam-page-red-flag-scanner-8c5ad6bf/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)
