{
  "generated_at": "2026-04-24T15:01:35.625676+00:00",
  "slug": "beta-vaultlayer-xyz-api-x402-reports-hyperliquid",
  "title": "VaultLayer \u00b7 Hyperliquid Perpetuals Data",
  "url": "https://beta.vaultlayer.xyz/api/x402/reports/hyperliquid",
  "category": "data",
  "summary": "Retrieve comprehensive Hyperliquid perpetual futures market data including funding rates, prices, and whale tracking.",
  "seo": {
    "title": "VaultLayer Hyperliquid API | x402 Perp Trading Data",
    "description": "Fetch Hyperliquid perpetual futures data via x402. Funding rates, mark prices, vault positions, whale activity. Pay 0.05 USDC per call on Base. DeFi derivatives data."
  },
  "use_cases": [
    "Monitor funding rate arbitrage opportunities",
    "Track whale positions and liquidation risks",
    "Analyze vault performance and copy-trading strategies",
    "Build perpetual futures dashboards with real-time data"
  ],
  "ideal_buyer": "DeFi derivatives traders and analysts focused on Hyperliquid perpetual markets.",
  "example_prompt": "Get current Hyperliquid funding rates, mark prices, and recent whale activity for BTC-PERP and ETH-PERP.",
  "example_request_body": {
    "include_funding_rates": true,
    "include_whale_activity": true,
    "include_vault_positions": false
  },
  "risk_notes": [],
  "pricing_sanity": {
    "flag": "normal",
    "ratio": 1.667,
    "median_category_atomic": 30000
  },
  "pricing_review_required": false,
  "pricing_decimal_suspect": false,
  "trust_tier": "indexed_external",
  "accepts": [
    {
      "scheme": "exact",
      "network": "base",
      "pay_to": "0x2190a1dba3e0a9f7216efc929e6faead44ad6131",
      "asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
      "max_amount_required_atomic": "50000",
      "max_timeout_seconds": 300,
      "mime_type": "application/json",
      "description": "Fetches Hyperliquid perpetual futures trading data including funding rates, prices, vault positions, and whale activity tracking. Provides access to funding rates, mark prices, open interest, volume, and historical price data.",
      "verified": false,
      "hints": {
        "input": {
          "type": "http",
          "method": "POST",
          "queryParams": {
            "limit": {
              "type": "Number of assets to return (1-100). Default: 200 (shows all active assets)."
            },
            "symbol": {
              "type": "Specific asset symbol (e.g., BTC, ETH). Case-insensitive."
            },
            "sort_by": {
              "type": "Sort order: funding (default), volume, open_interest, or symbol."
            },
            "whale_limit": {
              "type": "Number of whales to return (1-50). Default: 10."
            },
            "window_hours": {
              "type": "Historical price window in hours (1-168, max 1 week). Default: 4."
            },
            "vault_address": {
              "type": "Vault address to fetch metadata for (comma-separated for multiple)."
            },
            "wallet_address": {
              "type": "Wallet address to fetch vault positions for (comma-separated for multiple)."
            },
            "include_historical": {
              "type": "Include historical prices and moving averages. Default: false."
            },
            "include_vault_metadata": {
              "type": "Include vault metadata in response. Default: false."
            },
            "include_whale_activity": {
              "type": "Include whale activity tracking. Default: false."
            },
            "include_vault_positions": {
              "type": "Include vault positions in response. Default: false."
            }
          }
        },
        "output": {
          "type": "object",
          "required": [
            "status",
            "timestamp",
            "data",
            "meta"
          ],
          "properties": {
            "data": {
              "type": "object",
              "properties": {
                "asset": {
                  "type": [
                    "object",
                    "null"
                  ],
                  "description": "Single asset details when symbol parameter is provided."
                },
                "assets": {
                  "type": "array",
                  "items": {
                    "type": "object",
                    "required": [
                      "symbol",
                      "fundingRate",
                      "markPrice",
                      "oraclePrice"
                    ],
                    "properties": {
                      "symbol": {
                        "type": "string",
                        "description": "Asset symbol (e.g., BTC, ETH)."
                      },
                      "isNearMA": {
                        "type": [
                          "boolean",
                          "null"
                        ],
                        "description": "Whether current price is near moving average."
                      },
                      "markPrice": {
                        "type": "number",
                        "description": "Current mark price in USD."
                      },
                      "volume24h": {
                        "type": [
                          "number",
                          "null"
                        ],
                        "description": "24-hour trading volume (if available)."
                      },
                      "fundingRate": {
                        "type": "number",
                        "description": "Current funding rate (can be negative)."
                      },
                      "oraclePrice": {
                        "type": "number",
                        "description": "Oracle price in USD."
                      },
                      "openInterest": {
                        "type": [
                          "number",
                          "null"
                        ],
                        "description": "Open interest (if available)."
                      },
                      "movingAverage": {
                        "type": [
                          "number",
                          "null"
                        ],
                        "description": "Moving average price (when include_historical=true)."
                      },
                      "historicalPrices": {
                        "type": [
                          "array",
                          "null"
                        ],
                        "items": {
                          "type": "number"
                        },
                        "description": "Historical prices array (when include_historical=true)."
                      },
                      "isFundingAligned": {
                        "type": [
                          "boolean",
                          "null"
                        ],
                        "description": "Whether funding rate aligns with price trend."
                      }
                    }
                  },
                  "description": "List of Hyperliquid assets with funding rates, prices, and metrics."
                },
                "vault_metadata": {
                  "type": [
                    "object",
                    "null"
                  ],
                  "description": "Vault metadata for specified vault addresses."
                },
                "whale_activity": {
                  "type": [
                    "array",
                    "null"
                  ],
                  "items": {
                    "type": "object",
                    "required": [
                      "walletAddress",
                      "totalNotional",
                      "positionCount"
                    ],
                    "properties": {
                      "positionCount": {
                        "type": "number",
                        "description": "Number of positions."
                      },
                      "totalNotional": {
                        "type": "number",
                        "description": "Total notional value of positions in USD."
                      },
                      "walletAddress": {
                        "type": "string",
                        "description": "Wallet address of the whale."
                      },
                      "largePositions": {
                        "type": "array",
                        "items": {
                          "type": "object",
                          "properties": {
                            "side": {
                              "enum": [
                                "long",
                                "short"
                              ],
                              "type": "string"
                            },
                            "size": {
                              "type": "number"
                            },
                            "asset": {
                              "type": "string"
                            },
                            "leverage": {
                              "type": "number"
                            },
                            "notional": {
                              "type": "number"
                            },
                            "entryPrice": {
                              "type": "number"
                            },
                            "unrealizedPnl": {
                              "type": "number"
                            },
                            "liquidationPrice": {
                              "type": "number"
                            }
                          }
                        }
                      }
                    }
                  },
                  "description": "Large positions and top-performing vaults (when include_whale_activity=true)."
                },
                "vault_positions": {
                  "type": [
                    "array",
                    "null"
                  ],
                  "description": "Vault positions for specified wallet addresses."
                }
              },
              "description": "Asset data, vault positions, vault metadata, and whale activity."
            },
            "meta": {
              "type": "object",
              "description": "Echoed query params, source information, and total asset count."
            },
            "status": {
              "type": "string",
              "description": "Request outcome indicator (success/error)."
            },
            "timestamp": {
              "type": "string",
              "format": "date-time",
              "description": "ISO timestamp for when the data was fetched."
            },
            "cache_info": {
              "type": "object",
              "description": "Edge and in-memory cache policies for default/custom queries.",
              "additionalProperties": {
                "type": "string"
              }
            }
          }
        }
      }
    }
  ],
  "duplicate_cluster_id": "finance-cl-6ea1cd5585b5",
  "origin": {
    "slug": "beta-vaultlayer-xyz",
    "host": "beta.vaultlayer.xyz",
    "title": "VaultLayer Beta",
    "description": "Beta environment for VaultLayer. Currently unavailable due to SSL configuration error between Cloudflare and the origin server.",
    "url": "https://beta.vaultlayer.xyz",
    "favicon": "https://beta.vaultlayer.xyz/favicon.png"
  },
  "json_ld": {
    "@id": "https://x402all.com/resource/beta-vaultlayer-xyz-api-x402-reports-hyperliquid",
    "url": "https://x402all.com/resource/beta-vaultlayer-xyz-api-x402-reports-hyperliquid",
    "name": "VaultLayer \u00b7 Hyperliquid Perpetuals Data",
    "@type": "WebAPI",
    "offers": {
      "url": "https://x402all.com/resource/beta-vaultlayer-xyz-api-x402-reports-hyperliquid",
      "@type": "Offer",
      "price": "0.05",
      "availability": "https://schema.org/InStock",
      "priceCurrency": "USDC",
      "priceSpecification": {
        "@type": "UnitPriceSpecification",
        "price": "0.050000",
        "unitText": "call",
        "priceCurrency": "USDC"
      },
      "eligibleCustomerType": "Agent",
      "additionalProperty": [
        {
          "@type": "PropertyValue",
          "name": "paymentNetwork",
          "value": "base"
        },
        {
          "@type": "PropertyValue",
          "name": "paymentAsset",
          "value": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913"
        }
      ]
    },
    "sameAs": "https://beta.vaultlayer.xyz/api/x402/reports/hyperliquid",
    "@context": "https://schema.org",
    "provider": {
      "@id": "https://x402all.com/server/beta-vaultlayer-xyz",
      "url": "https://beta.vaultlayer.xyz",
      "name": "VaultLayer Beta",
      "@type": "Organization"
    },
    "identifier": "beta-vaultlayer-xyz-api-x402-reports-hyperliquid",
    "description": "Fetch Hyperliquid perpetual futures data via x402. Funding rates, mark prices, vault positions, whale activity. Pay 0.05 USDC per call on Base. DeFi derivatives data.",
    "potentialAction": {
      "@type": "BuyAction",
      "target": "https://axon402.com/test-buy?resource=beta-vaultlayer-xyz-api-x402-reports-hyperliquid",
      "description": "Test-buy this endpoint on AXON"
    },
    "applicationCategory": "data"
  },
  "axon_deep_link": "https://axon402.com/test-buy?resource=beta-vaultlayer-xyz-api-x402-reports-hyperliquid"
}
