mirrored listing x402 eip155:8453hyperliquid:mainnet

The most-recent N OHLCV candles (≤5000)

The most-recent N OHLCV candles (≤5000). Same per-row pricing as the windowed read ($0.00001 base for main/spot, $0.000025 premium for HIP-3/HIP-4); candles lag ~2 days.

Do you run api.hyperextend.xyz? This listing was mirrored from Coinbase's public Bazaar. Claim it in 30 seconds — no account required — and it becomes verified, permanently overriding the mirrored copy.

Claim this listing
1910 (raw units)
price
40
calls / 30d
16
unique payers
2026-09-17
updated

Provider

api.hyperextend.xyz · discovered, not yet claimed by its owner

Payment (x402 accepts[])

[
  {
    "scheme": "exact",
    "network": "eip155:8453",
    "payTo": "0x548fC289526ab2F0391D562a723cdA64Bbf1abc4",
    "asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
    "amount": "1910",
    "maxTimeoutSeconds": 60
  },
  {
    "scheme": "exact",
    "network": "hyperliquid:mainnet",
    "payTo": "0x548fC289526ab2F0391D562a723cdA64Bbf1abc4",
    "asset": "USDC:0x6d1e7cde53ba9467b783cb7c530ce054",
    "amount": "0.00191",
    "maxTimeoutSeconds": 60
  },
  {
    "scheme": "batch-settlement",
    "network": "eip155:8453",
    "payTo": "0x548fC289526ab2F0391D562a723cdA64Bbf1abc4",
    "asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
    "amount": "1910",
    "maxTimeoutSeconds": 300
  }
]

Output schema

{
  "bazaar": {
    "info": {
      "input": {
        "method": "GET",
        "queryParams": {
          "dex": "main",
          "n": 100
        },
        "type": "http"
      },
      "output": {
        "example": {
          "c": "42080.0",
          "close_time": 1700000059999,
          "h": "42100.0",
          "interval": "1m",
          "l": "41950.0",
          "n": 340,
          "o": "42000.0",
          "open_time": 1700000000000,
          "v": "12.5"
        },
        "type": "json"
      }
    },
    "schema": {
      "$schema": "https://json-schema.org/draft/2020-12/schema",
      "properties": {
        "input": {
          "additionalProperties": false,
          "properties": {
            "method": {
              "enum": [
                "GET",
                "HEAD",
                "DELETE"
              ],
              "type": "string"
            },
            "pathParams": {
              "properties": {
                "coin": {
                  "description": "Asset symbol, e.g. BTC",
                  "type": "string"
                },
                "interval": {
                  "description": "Candle interval, e.g. 1m",
                  "type": "string"
                }
              },
              "required": [
                "coin",
                "interval"
              ],
              "type": "object"
            },
            "queryParams": {
              "properties": {
                "dex": {
                  "type": "string"
                },
                "n": {
                  "type": "integer"
                }
              },
              "required": [],
              "type": "object"
            },
            "type": {
              "const": "http",
              "type": "string"
            }
          },
          "required": [
            "type",
            "method"
          ],
          "type": "object"
        },
        "output": {
          "properties": {
            "example": {
              "type": "object"
            },
            "type": {
              "type": "string"
            }
          },
          "required": [
            "type"
          ],
          "type": "object"
        }
      },
      "required": [
        "input"
      ],
      "type": "object"
    }
  }
}

Use it

curl

curl "https://api.hyperextend.xyz/v1/candles/BTC/1m/latest"
# -> 402 Payment Required, accepts[] lists how to pay
# retry with a PAYMENT-SIGNATURE (or PAYMENT header) once paid

JavaScript

const res = await fetch("https://api.hyperextend.xyz/v1/candles/BTC/1m/latest");
if (res.status === 402) {
  const { accepts } = await res.json();
  // pay one of accepts[] via an x402 client, then retry with the payment header
}

Python

import httpx
res = httpx.get("https://api.hyperextend.xyz/v1/candles/BTC/1m/latest")
if res.status_code == 402:
    accepts = res.json()["accepts"]
    # pay one of accepts[] via an x402 client, then retry with the payment header

Machine-readable

Everything on this page is also available as clean JSON at /resources/476.json, and this resource appears in /discovery/resources and /discovery/search.