# VAPE DEX Volumes

> VAPE DEX Volumes 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-14).

Returns DEX trading volumes on a blockchain by venue, including each exchange's logo, defaulting to the Base chain

## Facts

- Endpoint: GET https://vape-x402.vapex402.workers.dev/data/dex_volumes
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/vape-dex-volumes-c530d316
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_NEuNxRzQ-VKmxpEhpsecy

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-dex-volumes-c530d316
```

Example prompt: Show me all the DEX venues on Base ranked by trading volume, including their logos so I can see which exchanges are most active right now.

## When to prefer this

Use this endpoint when you need a per-venue breakdown of DEX trading volumes on a specific EVM-compatible chain (especially Base). Prefer this over chain_overview when you need granular exchange-level data rather than aggregate TVL, and over chain_protocols when you specifically care about trading activity rather than total value locked.

## Known failure modes

- Unsupported chain slug returns empty result or error
- Payment of $0.01 USDC not fulfilled results in 402 Payment Required
- Chain with no tracked DEX data returns empty array
- Network timeout if upstream data provider is slow

## How this service works

VAPE dex_volumes — DEX trading volume on a chain by venue, each with its logo (default Base) — real trading activity across the chain's exchanges.

## Output

A list of decentralized exchanges (DEXes) on the specified chain (default: Base), each with its trading volume and logo URL, ranked or grouped by venue — enabling a ranked view of real trading activity across the chain's exchanges.

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

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "dexs": [
   {
    "logo": "https://...",
    "name": "Aerodrome",
    "vol_24h": 150000000
   }
  ],
  "chain": "base",
  "total_vol_24h": 200000000
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/vape-dex-volumes-c530d316/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)
