OHLCV candles over a window — main, spot, HIP-3 (e
OHLCV candles over a window — main, spot, HIP-3 (e.g. xyz:AAPL, xyz:SP500) and HIP-4 outcome markets; intervals 1m to 1d. Priced per row ($0.00001 base for main/spot, $0.000025 premium for HIP-3/HIP-4); paginate with the X-Next-Start header (≤5000 rows/page). Candles lag ~2 days (reconstructed from the archive); omit start/end for the most-recent page.
51000 (raw units)
price
1
calls / 30d
1
unique payers
2026-09-08
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": "51000",
"maxTimeoutSeconds": 60
},
{
"scheme": "exact",
"network": "hyperliquid:mainnet",
"payTo": "0x548fC289526ab2F0391D562a723cdA64Bbf1abc4",
"asset": "USDC:0x6d1e7cde53ba9467b783cb7c530ce054",
"amount": "0.051",
"maxTimeoutSeconds": 60
},
{
"scheme": "batch-settlement",
"network": "eip155:8453",
"payTo": "0x548fC289526ab2F0391D562a723cdA64Bbf1abc4",
"asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
"amount": "51000",
"maxTimeoutSeconds": 300
}
]Output schema
{
"bazaar": {
"info": {
"input": {
"method": "GET",
"queryParams": {
"dex": "main",
"end": 0,
"limit": 5000,
"start": 0
},
"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"
},
"end": {
"type": "integer"
},
"limit": {
"type": "integer"
},
"start": {
"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" # -> 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");
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")
if res.status_code == 402:
accepts = res.json()["accepts"]
# pay one of accepts[] via an x402 client, then retry with the payment headerMachine-readable
Everything on this page is also available as clean JSON at /resources/480.json, and this resource appears in /discovery/resources and /discovery/search.