# VAPE Market Intelligence Scanner

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

Returns a comprehensive snapshot of Base ecosystem market conditions including TVL, DeFi protocol rankings, crypto prices, fear/greed index, and concentration risk metrics.

## Facts

- Endpoint: GET https://vape-x402.vapex402.workers.dev/scan/market_intel
- Price: $0.07/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/vape-market-intelligence-scanner-219643d4
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_ATQHZIqwxSATUS-TRqogq

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-market-intelligence-scanner-219643d4
```

Example prompt: Pull a live market intelligence snapshot for the Base ecosystem — I want to see current TVL, top protocols by share, 24h gainers and losers, the fear and greed index, and any concentration risk flags.

## When to prefer this

Choose this endpoint when you need a broad, ecosystem-level market intelligence view of Base DeFi — covering TVL, protocol rankings, sentiment, and risk concentration in a single call. Prefer this over single-protocol scanners or security audit endpoints when the goal is macro market context rather than per-contract vulnerability detection.

## Known failure modes

- Missing or invalid address parameter returns a 4xx error
- Unsupported chain ID override may return empty or error response
- Upstream DeFi data source outage may result in stale or incomplete TVL data
- Rate limits or payment failures via x402 protocol may block access
- Response may lag real-time by minutes depending on indexer refresh cadence

## How this service works

VAPE market_intel — Base TVL with 24h/7d change, per-protocol share/category breakdown, concentration risk, 24h DEX volume, top gainers/losers, ETH/BTC prices, Fear & Greed index, global market cap, and a real-data narrative summary. Takes no input -- always a whole-of-Base snapshot, not a per-token lookup. Real on-chain/market data, no simulation.

## Output

A JSON object containing: BTC and ETH spot prices, fear/greed index value and classification, Base total TVL and 24h change percentage, top protocols ranked by TVL with category and 24h change, top 24h gainers and losers, DEX volume for 24h, global market cap and 24h change, category breakdown percentages (e.g. Lending, Dexes), a concentration risk label (LOW/MEDIUM/HIGH with detail), and a human-readable market overview narrative string.

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

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "prices": {
   "bitcoin": 97000,
   "ethereum": 3200.5
  },
  "fear_greed": 54,
  "base_tvl_usd": 4100000000,
  "top_protocols": [
   {
    "name": "Morpho",
    "tvl_usd": 900000000,
    "category": "Lending",
    "change_24h_pct": 2.1,
    "share_of_base_pct": 22
   }
  ],
  "top_losers_24h": [],
  "market_overview": "Base TVL sits at $4,100,000,000, up 1.8% over 24h. Lending leads the ecosystem at 34.2% of TVL...",
  "top_gainers_24h": [
   {
    "name": "Morpho",
    "change_24h_pct": 2.1
   }
  ],
  "concentration_risk": "MEDIUM — top 3 protocols hold 48.3% of Base TVL",
  "dex_volume_24h_usd": 210000000,
  "global_market_cap_usd": 2500000000000,
  "category_breakdown_pct": {
   "Dexes": 21.5,
   "Lending": 34.2
  },
  "base_tvl_24h_change_pct": 1.8,
  "fear_greed_classification": "Neutral",
  "global_market_cap_change_24h_pct": 0.6
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/vape-market-intelligence-scanner-219643d4/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)
