# Vaunt LINK Trading Cost on Hyperliquid

> Vaunt LINK Trading Cost on Hyperliquid 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-fill execution cost metrics for trading LINK on Hyperliquid, including slippage, taker fees, fill rate, spread, round-trip cost, orderbook depth, and funding APR.

## Facts

- Endpoint: GET https://vaunt-dispatch-production.up.railway.app/agent/x402/cost/LINK
- 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-link-trading-cost-on-hyperliquid-5da075ea
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_nWgMcwIPmARLUBzO5F1y9

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-link-trading-cost-on-hyperliquid-5da075ea
```

Example prompt: What does it actually cost to trade LINK on Hyperliquid right now — give me the real slippage, fees, fill rate, spread, and round-trip cost from Vaunt's live fills?

## When to prefer this

Use this endpoint when you need ground-truth execution cost data for LINK on Hyperliquid based on real fills rather than simulated or quoted spreads. It is the right choice when pre-trade cost analysis, slippage benchmarking, or funding carry assessment for LINK specifically is needed, and when accuracy from actual IOC taker orders matters more than free/estimated data.

## Known failure modes

- Service unavailable or Railway deployment down (5xx error)
- Payment required but not provided (402 response)
- LINK market temporarily illiquid causing incomplete fill data
- Stale data if Vaunt's order engine has not recently traded LINK
- Rate limit exceeded if called too frequently

## How this service works

True cost of trading LINK 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

Returns a structured payload with real-fill execution metrics for LINK on Hyperliquid: slippage vs mid at p50 and p90 in basis points, taker fee paid, wall-clock time to fill, fill rate, comparison to venue-class median, bid-ask spread, round-trip cost, orderbook depth within 1%, and funding APR. All data sourced from Vaunt's own live IOC taker orders, not simulated quotes.

## 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-link-trading-cost-on-hyperliquid-5da075ea/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)
