# Vaunt DOGE Signal on Hyperliquid

> Vaunt DOGE Signal on Hyperliquid 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 a refreshed trading signal for DOGE on Hyperliquid including live engine position status, cell performance record, 24h evidence verdict, and last five banded outcomes — no entry/stop/target, results only.

## Facts

- Endpoint: GET https://vaunt-dispatch-production.up.railway.app/agent/x402/signal/DOGE
- 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-doge-signal-on-hyperliquid-aa62a420
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_ssuhQhraZRp4jr3G42vWr

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-doge-signal-on-hyperliquid-aa62a420
```

Example prompt: What's Vaunt's current signal for DOGE on Hyperliquid — is the live engine holding it right now, and what does the 24h evidence say about going LONG?

## When to prefer this

Use this endpoint when you need a quantitatively-grounded, real-money-backed signal for DOGE specifically on Hyperliquid, and want evidence context (regime, posture, comparable triggers, historical cell performance) without actionable entry/stop/target levels. Prefer this over generic sentiment or price APIs when you need to know what a live algorithmic trading engine is actually doing with DOGE, validated by closed trade records.

## Known failure modes

- No data available if DOGE has insufficient history in the Vaunt system
- Signal may be stale up to 5 minutes between refreshes
- Live position status is delayed by 60 minutes by design
- HTTP 402 Payment Required if x402 payment of $0.01 USDC is not provided
- Service unavailability on Railway infrastructure downtime

## How this service works

Vaunt signal for DOGE on Hyperliquid, refreshed every 5 minutes: whether a live real-money engine is holding it now (60-min delay) and in which cell, that cell's closed record (trades, days, mean, win, t, honesty label), the 24h evidence verdict for a LONG (comparable triggers, class base rate, regime, posture, primary risk) and the last five banded outcomes on DOGE. Results, never entry/stop/target.

## Output

Returns a JSON payload including: whether the live Vaunt engine is currently holding DOGE (with 60-minute delay) and its cell identifier; that cell's closed performance record (number of trades, days held, mean return, win rate, t-statistic, honesty label); a 24h evidence verdict for a LONG on DOGE (comparable triggers, class base rate, regime, posture, primary risk); and the last five banded outcomes on DOGE. Does not include entry price, stop loss, or price targets.

## 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-doge-signal-on-hyperliquid-aa62a420/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)
