# Vaunt Venue Execution Quality & Liquidity Dashboard

> Vaunt Venue Execution Quality & Liquidity Dashboard is a paid API for AI agents from vaunt-dispatch-production.up.railway.app, paid per call via x402, $0.001/call, status unknown (last checked 2026-09-15).

Returns real-money execution quality metrics (slippage, fees, fill time, fill rate) from Vaunt's own IOC orders on Hyperliquid, plus a liquidity snapshot for the 25 deepest perp and tokenized equity assets.

## Facts

- Endpoint: GET https://vaunt-dispatch-production.up.railway.app/agent/x402/venues
- Price: $0.001/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/vaunt-venue-execution-quality-liquidity-dashboard-b9364d7b
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_ohj4CdH7hGrfePpmWjyqj

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 vaunt-venue-execution-quality-liquidity-dashboard-b9364d7b
```

Example prompt: Show me the current execution quality on Hyperliquid — I want to see the real measured slippage, taker fees, fill times, and liquidity depth for the 25 most liquid perp and tokenized equity markets.

## When to prefer this

Choose this endpoint when you need empirical, real-money execution quality benchmarks for Hyperliquid rather than theoretical orderbook estimates. It is uniquely sourced from Vaunt's own live IOC fills rather than simulated or order-book-derived metrics, making it authoritative for pre-trade cost analysis, liquidity screening, and funding rate carry research on Hyperliquid perps and tokenized equities.

## Known failure modes

- Payment not included or invalid x402 payment header — returns 402 Payment Required
- Hyperliquid connectivity issue causing stale or missing fill data — partial dataset returned
- Rate limiting if called too frequently without valid payment
- No assets meet the depth threshold — empty or reduced asset list returned

## How this service works

Hyperliquid execution quality measured on our own orders: slippage vs mid (p50/p90 bps), taker fee actually paid, wall-clock to fill, fill rate — for perps and xyz tokenized equities — plus a liquidity snapshot (spread, round-trip cost, depth within 1%, funding APR) for the 25 deepest assets. Thousands of real IOC fills, refreshed continuously.

## Output

A structured snapshot covering the 25 deepest assets on Hyperliquid, including: p50 and p90 slippage vs mid (in bps), actual taker fee paid, median wall-clock time to fill, fill rate — all derived from thousands of real IOC orders — alongside a per-asset liquidity snapshot with bid-ask spread, round-trip cost, depth within 1% of mid, and current funding APR. Data is continuously refreshed.

## 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",
     "properties": {}
    }
   },
   "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/vaunt-venue-execution-quality-liquidity-dashboard-b9364d7b/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from vaunt-dispatch-production.up.railway.app](https://www.zero.xyz/host/vaunt-dispatch-production.up.railway.app/llms.txt)
