OHLC candlestick bars for a futures contract — historical aggregates with settle
OHLC candlestick bars for a futures contract — historical aggregates with settlement price and dollar volume by contract ticker.
Answeringour last check, 2026-09-24
1 of 1checks answered this week
639 msmedian answer time
$0.015listed price per call
$0.015price it asked us
Paid test badge: not yet. The checks above are free: we call the tool without paying and read the payment request it sends back. The Verified badge needs paid calls whose answers match the promised output, and nobody can buy a badge.
Endpoint
GET https://marketdata.use.x402atlas.com/futures-aggregates
| Category | Market data |
|---|---|
| Provider host | marketdata.use.x402atlas.com |
| Networks | eip155:137, eip155:42161, eip155:8453, solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp |
| Payment schemes | exact |
| Self-reported calls, 30 days | 2 from 1 payers (the provider's figure, not ours) |
Our checks, last 30 days
| Day | Result | HTTP | Asked | Time |
|---|---|---|---|---|
| 2026-09-24 | valid payment request | 402 | $0.015 | 639 ms |
Example input (from the provider)
{
"method": "GET",
"queryParams": {
"from": "2025-02-01",
"limit": 10,
"resolution": "1session",
"ticker": "GCJ5",
"to": "2025-02-07"
},
"type": "http"
}
Promised output schema (from the provider)
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"properties": {
"input": {
"additionalProperties": false,
"properties": {
"method": {
"enum": [
"GET"
],
"type": "string"
},
"queryParams": {
"properties": {
"from": {
"description": "Range start (YYYY-MM-DD)",
"format": "date",
"type": "string"
},
"limit": {
"description": "Max candles returned",
"maximum": 50000,
"minimum": 1,
"type": "integer"
},
"resolution": {
"description": "Candle size, e.g. 1min, 5min, 1hour, 1session",
"pattern": "^[1-9][0-9]*(sec|min|hour|session|week|month|quarter|year)$",
"type": "string"
},
"ticker": {
"description": "Futures contract ticker, e.g. ESU5, GCJ5",
"type": "string"
},
"to": {
"description": "Range end (YYYY-MM-DD)",
"format": "date",
"type": "string"
}
},
"required": [
"ticker"
],
"type": "object"
},
"type": {
"const": "http",
"type": "string"
}
},
"required": [
"type",
"method"
],
"type": "object"
},
"output": {
"properties": {
"example": {
"properties": {
"candles": {
"description": "Normalized futures OHLCV bars.",
"items": {
"properties": {
"close": {
"type": "number"
},
"dollar_volume": {
"type": "number"
},
"high": {
"type": "number"
},
"low": {
"type": "number"
},
"open": {
"type": "number"
},
"session_end_date": {
"description": "Trading session end date.",
"type": "string"
},
"settlement_price": {
"type": "number"
},
"time": {
"description": "Bar start timestamp.",
"format": "date-time",
"type": "string"
},
"transactions": {
"type": "integer"
},
"volume": {
"type": "number"
}
},
"required": [
"time",
"open",
"high",
"low",
"close",
"volume"
],
"type": "object"
},
"type": "array"
},
"queried_at": {
"description": "UTC timestamp when this bridge queried the upstream.",
"format": "date-time",
"type": "string"
},
"resolution": {
"description": "Echo of the requested candle resolution.",
"type": "string"
},
"ticker": {
"description": "Echo of the requested contract ticker.",
"type": "string"
}
},
"required": [
"queried_at",
"ticker",
"candles"
],
"type": "object"
},
"type": {
"type": "string"
}
},
"required": [
"type"
],
"type": "object"
}
},
"required": [
"input"
],
"type": "object"
}