# Vaunt Trade Preview

> Vaunt Trade Preview 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 a STRONG/MODERATE/WEAK/AGAINST/UNKNOWN conviction label plus one-line basis, current regime band, and whether Vaunt's live real-money Hyperliquid engine holds the position now, for any proposed asset/direction trade.

## Facts

- Endpoint: GET https://vaunt-dispatch-production.up.railway.app/agent/x402/preview
- 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-trade-preview-1bb724b4
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_b_4mdbk41gjSmgKwHLWxB

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-trade-preview-1bb724b4
```

Example prompt: What's Vaunt's conviction on a LONG trade for SOL over the next 4 hours — is it strong, weak, or against, and is Vaunt actually holding it right now?

## When to prefer this

Use this endpoint when you need a fast, cheap ($0.001) top-level conviction label before committing to a deeper evaluation. It is ideal for filtering a watchlist or doing a first-pass triage on trade ideas. If you need the detailed evidence, comparable trades, or full trade history, use the evaluate or evidence sibling routes instead.

## Known failure modes

- Unknown or unsupported ticker returns UNKNOWN label or error
- Invalid direction enum value causes 400 bad request
- Horizon value outside allowed enum (4 or 24) causes validation error
- Live engine data temporarily unavailable may return stale or UNKNOWN signal
- Payment not processed or insufficient USDC balance results in 402 payment required

## How this service works

Vaunt preview: STRONG/MODERATE/WEAK/AGAINST/UNKNOWN for a proposed trade (asset + LONG/SHORT) with the one-line basis, current regime band and whether Vaunt holds it now — from a live real-money Hyperliquid engine. The label only; the comparables, base rate and trade history are on the evaluate and evidence routes.

## Output

A structured response containing: a conviction label (STRONG, MODERATE, WEAK, AGAINST, or UNKNOWN), a one-line basis explaining the rationale, the current regime band for the asset, and a boolean or flag indicating whether Vaunt's live real-money engine currently holds this position.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "asset": {
   "type": "string",
   "description": "Ticker as listed on Hyperliquid, e.g. SOL, HYPE, BTC, or xyz:NVDA for tokenized equities"
  },
  "direction": {
   "enum": [
    "LONG",
    "SHORT"
   ],
   "type": "string"
  },
  "horizon_h": {
   "enum": [
    4,
    24
   ],
   "type": "integer",
   "default": 4,
   "description": "Evaluation horizon in hours"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/vaunt-trade-preview-1bb724b4/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)
