# Vaunt Dispatch – Live Opportunities Feed

> Vaunt Dispatch – Live Opportunities Feed is a paid API for AI agents from vaunt-dispatch-production.up.railway.app, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-15).

Returns Vaunt's current real-money open positions on Hyperliquid, filtered to only strategies with a positive day-clustered live track record, showing asset, direction, strategy, and position age at the 15-minute mark after entry.

## Facts

- Endpoint: GET https://vaunt-dispatch-production.up.railway.app/agent/x402/opportunities
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/vaunt-dispatch-live-opportunities-feed-9cbced6d
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_F8guW_wEkbMMbTFHGzwvi

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-dispatch-live-opportunities-feed-9cbced6d
```

Example prompt: What positions is Vaunt holding live on Hyperliquid right now — just show me the asset, direction, strategy, and how long each trade has been open, but only the ones from strategies with a positive track record.

## When to prefer this

Use this endpoint when you want a high-level view of what Vaunt is actively trading on Hyperliquid right now, filtered only to strategies with proven positive records — ideal for monitoring, signal confirmation, or understanding which assets Vaunt's engine is currently directional on. Do not use this if you need entry prices, stop levels, target prices, or position sizes, as those are not provided. Prefer this over per-asset signal endpoints when you want a cross-asset snapshot of all live positions at once.

## Known failure modes

- Empty list returned if no strategies currently have qualifying positive track records or no positions are open
- Payment failure (402) if the $0.01 USDC x402 payment is not included or malformed
- Stale data if Vaunt's live engine has a connectivity issue with Hyperliquid
- Rate limiting or 429 if called too frequently without payment
- 503 if the Railway deployment is temporarily unavailable

## How this service works

What Vaunt is holding right now with real money on Hyperliquid, 15 minutes after entry: asset, direction, strategy, age. Only lanes with a positive day-clustered live record are shown. No entry, stop, target or size.

## Output

A list of current open positions Vaunt is holding on Hyperliquid, each entry containing the asset (e.g. BTC, SOL, HYPE), trade direction (long or short), the strategy or 'lane' name, and the age of the position (measured approximately 15 minutes after entry). Only positions from strategies with a positive day-clustered live track record are included. No entry price, stop loss, take profit, or position size is exposed.

## 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-dispatch-live-opportunities-feed-9cbced6d/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)
