# APEX Runner Hyperliquid Funding Rate Signal

> APEX Runner Hyperliquid Funding Rate Signal is a paid API for AI agents from apexrunner.ai, paid per call via x402, $0.105/call, status unknown (last checked 2026-09-15).

Returns the current 8-hour and annualized funding rate for a given crypto trading pair on Hyperliquid, with a plain-English sentiment label and long/short confirmation flags.

## Facts

- Endpoint: GET https://apexrunner.ai/signals/funding-rate-hl
- Price: $0.105/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/apex-runner-hyperliquid-funding-rate-signal-7b206bc2
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_RsUBHczbeDc3wtKNXG0xm

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 apex-runner-hyperliquid-funding-rate-signal-7b206bc2
```

Example prompt: What's the current Hyperliquid funding rate for BTC — is it bullish or bearish, and does it confirm going long right now?

## When to prefer this

Use this endpoint when you need a quick, interpreted funding rate signal for a specific Hyperliquid perpetual pair with built-in sentiment labeling and long/short confirmation flags, rather than raw exchange API data. Ideal for AI trading agents that need a pre-analyzed, human-readable signal rather than raw rate numbers. Prefer over manual Hyperliquid API calls when you want sentiment labels and annualized rate calculations already done.

## Known failure modes

- Invalid or unsupported trading pair returns an error or empty result
- Hyperliquid data unavailable triggers CoinGlass fallback which may have higher latency
- Stale cache if Hyperliquid feed is down — cached_at timestamp will reveal staleness
- Payment of 0.15 USDC not submitted results in HTTP 402 Payment Required
- Network timeout if both primary and fallback sources are unreachable

## How this service works

APEX Runner: Funding Rate Hl Signal

## Output

A JSON object containing the trading pair, 8-hour funding rate as a float, annualized funding rate percentage, a sentiment label (EXTREMELY_BULLISH, BULLISH, NEUTRAL, or SLIGHTLY_BEARISH), a plain-English interpretation string, boolean flags for whether funding confirms a long or short position, the data source (hl_cache or coinglass_fallback), and a cache timestamp.

## Example request

```json
{
 "method": "GET"
}
```

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "method"
   ],
   "properties": {
    "queryParams": {
     "type": "object",
     "properties": {
      "pair": {
       "enum": [
        "AVAX",
        "BTC",
        "ETH",
        "SOL"
       ],
       "type": "string",
       "default": "BTC"
      }
     }
    }
   }
  },
  "output": {
   "type": "object",
   "properties": {
    "example": {
     "type": "object",
     "properties": {
      "pair": {
       "type": "string"
      },
      "_apex": {
       "type": "object",
       "properties": {
        "signal": {
         "type": "string"
        },
        "source": {
         "type": "string"
        },
        "version": {
         "type": "string"
        },
        "instance": {
         "type": "string"
        },
        "verify_at": {
         "type": "string"
        },
        "signal_hash": {
         "type": "string"
        },
        "live_trading": {
         "type": "boolean"
        },
        "evolution_runs": {
         "type": "integer"
        },
        "live_capital_deployed": {
         "type": "boolean"
        },
        "trades_backing_signal": {
         "type": "integer"
        }
       }
      },
      "source": {
       "type": "string"
      },
      "cached_at": {
       "type": "string"
      },
      "funding_label": {
       "type": "string"
      },
      "interpretation": {
       "type": "string"
      },
      "funding_rate_8h": {
       "type": "number"
      },
      "funding_confirms_long": {
       "type": "boolean"
      },
      "funding_annualized_pct": {
       "type": "number"
      },
      "funding_confirms_short": {
       "type": "boolean"
      }
     }
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "pair": "string — trading pair",
 "type": "json",
 "source": "string — hl_cache or coinglass_fallback",
 "example": {
  "pair": "BTC",
  "source": "hl_cache",
  "cached_at": "2026-06-11T12:00:00+00:00",
  "funding_label": "NEUTRAL",
  "interpretation": "Funding +3.5%/yr — neutral",
  "funding_rate_8h": 0.0032,
  "funding_confirms_long": false,
  "funding_annualized_pct": 3.5,
  "funding_confirms_short": false
 },
 "cached_at": "ISO8601 timestamp",
 "funding_label": "string — EXTREMELY_BULLISH / BULLISH / NEUTRAL / SLIGHTLY_BEARISH",
 "interpretation": "string — plain-English summary",
 "funding_rate_8h": "float — 8-hour funding rate",
 "funding_confirms_long": "bool — negative funding favors longs",
 "funding_annualized_pct": "float — annualized rate %",
 "funding_confirms_short": "bool — high positive funding favors shorts"
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/apex-runner-hyperliquid-funding-rate-signal-7b206bc2/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from apexrunner.ai](https://www.zero.xyz/host/apexrunner.ai/llms.txt)
