# Vaunt XRP/Hyperliquid True Trading Cost

> Vaunt XRP/Hyperliquid True Trading Cost 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 execution-quality metrics for trading XRP on Hyperliquid, including slippage (p50/p90 bps), taker fee, fill time, fill rate, spread, round-trip cost, 1% depth, and funding APR — derived from Vaunt's own live IOC taker orders.

## Facts

- Endpoint: GET https://vaunt-dispatch-production.up.railway.app/agent/x402/cost/XRP
- 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-xrp-hyperliquid-true-trading-cost-72d14d22
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_U-Osj3AOvkm8cFYAxk2wm

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-xrp-hyperliquid-true-trading-cost-72d14d22
```

Example prompt: What's the real cost of trading XRP on Hyperliquid right now — including slippage, taker fees, fill rate, round-trip cost, and funding APR based on Vaunt's actual live orders?

## When to prefer this

Use this endpoint when you need ground-truth execution cost data for XRP on Hyperliquid derived from real fills rather than quoted prices or order book snapshots. Prefer this over generic orderbook-depth APIs when you need fill rate, actual slippage experienced, and wall-clock latency. Ideal for pre-trade cost analysis, strategy backtesting calibration, and comparing XRP liquidity across venues.

## Known failure modes

- Payment not received or x402 authorization fails — HTTP 402 returned
- Hyperliquid venue unavailable or no recent fills — stale or empty data returned
- Rate limiting if called too frequently
- Network timeout from Railway deployment

## How this service works

True cost of trading XRP on Hyperliquid, measured on Vaunt's own IOC taker orders: slippage vs mid (p50/p90 bps), taker fee paid, wall-clock to fill, fill rate, against the venue-class median, plus spread, round-trip cost, depth within 1% and funding APR. Real fills, not quotes.

## Output

A structured data object containing XRP-specific execution metrics from Vaunt's own IOC taker orders on Hyperliquid: slippage vs mid at p50 and p90 (in bps), taker fee paid (bps), wall-clock time to fill (ms), fill rate (%), comparison to venue-class median, bid-ask spread (bps), round-trip cost (bps), market depth within 1% of mid, and funding APR.

## 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-xrp-hyperliquid-true-trading-cost-72d14d22/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)
