# VAPE Protocol Snapshot

> VAPE Protocol Snapshot is a paid API for AI agents from vape-x402.vapex402.workers.dev, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-15).

Returns a full DeFi protocol record including per-chain TVL, category, audit info, logo, Twitter handle, and description for a given protocol slug.

## Facts

- Endpoint: GET https://vape-x402.vapex402.workers.dev/data/protocol
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/vape-protocol-snapshot-253226be
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_kSop-sQ4w_kt1j4rH1REf

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-protocol-snapshot-253226be
```

Example prompt: Can you pull the full VAPE protocol snapshot for 'aerodrome' — I want the per-chain TVL, category, audit history, logo, and Twitter handle?

## When to prefer this

Use this endpoint when you need a comprehensive 'who is this protocol' snapshot in a single call — covering TVL by chain, category, audits, branding, and social handles. Prefer it over chain-specific endpoints when you want cross-chain TVL aggregation for one protocol, or over token_intel when you need protocol-level metadata rather than token price data.

## Known failure modes

- Invalid or unknown protocol slug returns empty or 404 response
- Payment failure ($0.01 USDC x402) blocks the request
- Slug misspelling causes no-match response
- Protocol not yet indexed in VAPE returns no data

## How this service works

VAPE protocol — Full protocol record: per-chain TVL, category, audits, the official logo, Twitter, and description — the 'who is this protocol' snapshot.

## Output

A structured record for the queried DeFi protocol including total value locked broken down by chain, protocol category, audit history and scores, official logo URL, Twitter/X handle, and a human-readable description of the protocol.

## 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": [
      "slug"
     ],
     "properties": {
      "slug": {
       "type": "string",
       "description": "protocol slug, e.g. 'aerodrome'"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "tvl": {
   "Base": 900000000
  },
  "logo": "https://...",
  "name": "Aerodrome",
  "slug": "aerodrome",
  "audits": "2"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/vape-protocol-snapshot-253226be/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)
