Daily OHLCV candles (open, high, low, close, volume) for BTC/USD and ETH/USD, 10
Daily OHLCV candles (open, high, low, close, volume) for BTC/USD and ETH/USD, 1000 days of history (about 2.7 years) refreshed once a day. Source: Binance public market data. No API key needed from the buyer beyond the x402 payment. GET /feed/ohlcv returns the candles; GET /feed/resumen returns last close plus 24h/7d/30d change and 30-day high and low. Built for trading agents that need a clean historical series without running their own data pipeline. Daily interval only. Not financial advice.
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://fachada.chelsea-hermes.workers.dev/feed/ohlcv
| Category | Market data |
|---|---|
| Provider host | fachada.chelsea-hermes.workers.dev |
| Networks | eip155:8453 |
| Payment schemes | exact |
| Self-reported calls, 30 days | 0 from 0 payers (the provider's figure, not ours) |
Our checks, last 30 days
| Day | Result | HTTP | Asked | Time |
|---|---|---|---|---|
| 2026-09-26 | valid payment request | 402 | $0.02 | 549 ms |
Example input (from the provider)
{
"description": "symbol: BTC | ETH | BTC/USD | ETH/USD; limit: number of candles, default 365, max 1000",
"method": "GET",
"queryParams": {
"limit": "how many daily candles to return, default 365, maximum 1000",
"symbol": "BTC or ETH (also accepts BTC/USD, ETH/USD)"
},
"type": "http"
}
Promised output schema (from the provider)
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"properties": {
"input": {
"additionalProperties": false,
"properties": {
"description": {
"type": "string"
},
"method": {
"enum": [
"GET"
],
"type": "string"
},
"queryParams": {
"type": "object"
},
"type": {
"const": "http",
"type": "string"
}
},
"required": [
"type",
"method"
],
"type": "object"
},
"output": {
"additionalProperties": false,
"properties": {
"example": {
"type": "object"
},
"type": {
"const": "json",
"type": "string"
}
},
"required": [
"type"
],
"type": "object"
}
},
"type": "object"
}