# VAPE Token Safety Check

> VAPE Token Safety Check is a paid API for AI agents from vape.juxtaposition1.deno.net, paid per call via x402, $0.02/call, status unknown (last checked 2026-09-14).

Performs a comprehensive token safety scan on a Base chain contract address using GoPlus, DexScreener, and DefiLlama data, returning a CertiK-style safety score and risk flags.

## Facts

- Endpoint: GET https://vape.juxtaposition1.deno.net/scan/token_safety_check
- Price: $0.02/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/vape-token-safety-check-bbb0d2f9
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_vuWIbRmbQWUTDPJmaX5TJ

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-token-safety-check-bbb0d2f9
```

Example prompt: Can you run a full safety scan on the Base token at address 0x4ed4E862860beD51a9570b96d89aF5E1B0Efefed and tell me if it's safe to buy — I want the GoPlus/DexScreener safety score and any risk flags?

## When to prefer this

Use this endpoint when you need a holistic, multi-source token safety score for a Base chain token — combining GoPlus security flags, DexScreener market data, and DefiLlama TVL into a single CertiK-style verdict. Prefer over individual checks when you want an all-in-one safety verdict rather than specific liquidity, exploit, or rug-pull checks available as sibling endpoints.

## Known failure modes

- Invalid or unrecognized contract address returns an error or empty result
- Token not yet indexed by GoPlus or DexScreener returns incomplete data
- Unsupported chain ID override returns an error
- Rate limiting or upstream API failures from GoPlus/DexScreener/DefiLlama cause partial or failed responses
- Non-contract wallet addresses may return no meaningful safety data

## How this service works

VAPE token_safety_check — Full token safety + liquidity scan with a weighted 0-100 risk score. Real on-chain/market data, no simulation.

## Output

Returns a comprehensive token safety report including a CertiK-style composite safety score, GoPlus security flags (e.g. honeypot, mint authority, blacklist), DexScreener trading data, and DefiLlama TVL signals — all sourced from real live data without simulation.

## 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"
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/vape-token-safety-check-bbb0d2f9/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from vape.juxtaposition1.deno.net](https://www.zero.xyz/host/vape.juxtaposition1.deno.net/llms.txt)
