# VAPE Liquidity Check — Base Token DEX Liquidity Depth

> VAPE Liquidity Check — Base Token DEX Liquidity Depth 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-15).

Returns liquidity depth, top DEX pair, and related on-chain liquidity data for a Base (chain 8453) token address using GoPlus, DexScreener, and DefiLlama data.

## Facts

- Endpoint: GET https://vape.juxtaposition1.deno.net/scan/liquidity_check
- Price: $0.02/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/vape-liquidity-check-base-token-dex-liquidity-depth-7ba5bfd8
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_8WZhHuUPV4sg0suemNWhb

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-liquidity-check-base-token-dex-liquidity-depth-7ba5bfd8
```

Example prompt: Can you check the liquidity depth and top DEX pair for this Base chain token — 0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913?

## When to prefer this

Use this endpoint when you need real on-chain liquidity depth and top DEX pair data for a Base chain token, sourced from authoritative providers (GoPlus, DexScreener, DefiLlama) without simulation. Prefer this over generic DEX APIs when you specifically need Base chain liquidity analysis with multi-source aggregation.

## Known failure modes

- Invalid or non-existent token address returns error or empty result
- Token exists on a different chain than Base (8453) and returns no data unless chain override is provided
- Token has no DEX listings and returns empty liquidity data
- Rate limiting or upstream data provider (GoPlus/DexScreener/DefiLlama) unavailability causes failure
- Malformed address format returns validation error

## How this service works

VAPE liquidity_check — Liquidity depth + top pair DEX for a Base token. Real on-chain/market data, no simulation.

## Output

Returns liquidity depth metrics and the top DEX pair for the given Base token, sourced from real GoPlus, DexScreener, and DefiLlama data — including pool size, best trading venue, and related liquidity indicators.

## 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-liquidity-check-base-token-dex-liquidity-depth-7ba5bfd8/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)
