ToolAssay

Historical OHLC candles for any major crypto asset — hourly or daily, up to 300

Historical OHLC candles for any major crypto asset — hourly or daily, up to 300 candles, with period stats (change %, high, low) — from Coinbase Exchange with Kraken fallback, no API key. Also a price-at-date mode: pass date=YYYY-MM-DD for that day's candle and close. USD, EUR, or GBP quotes; 5min cache.

Answeringour last check, 2026-09-24
1 of 1checks answered this week
942 msmedian answer time
$0.02listed price per call
$0.02price 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://netintel.dev/crypto/ohlc

CategoryMarket data
Provider hostnetintel.dev
Networkseip155:8453, solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp
Payment schemesexact
Self-reported calls, 30 days1 from 1 payers (the provider's figure, not ours)

Our checks, last 30 days

DayResultHTTPAskedTime
2026-09-24 valid payment request 402$0.02 942 ms

Example input (from the provider)

{
  "method": "GET",
  "queryParams": {
    "days": 7,
    "interval": "1d",
    "symbol": "BTC"
  },
  "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": {
            "date": {
              "description": "YYYY-MM-DD price-at-date mode: that day's single daily candle + its close as price. Mutually exclusive with days/limit",
              "type": "string"
            },
            "days": {
              "description": "Lookback window, default 30. Max 300 for 1d, 12 for 1h (300 candles). Alias: period",
              "type": "number"
            },
            "interval": {
              "description": "1h or 1d (default 1d). hour/hourly and day/daily accepted. Aliases: granularity, timeframe",
              "type": "string"
            },
            "limit": {
              "description": "Number of most-recent candles (the usual candle-API param). Capped at 288 for 1h, 300 for 1d. Aliases: count, candles. Use instead of days.",
              "type": "number"
            },
            "symbol": {
              "description": "One ticker or full name (\"BTC\" or \"bitcoin\"); a leading $ is fine. Aliases: coin, ticker, asset",
              "type": "string"
            },
            "vs": {
              "description": "Quote currency: USD (default), EUR or GBP. Aliases: currency, fiat, vs_currency",
              "type": "string"
            }
          },
          "type": "object"
        },
        "type": {
          "const": "http",
          "type": "string"
        }
      },
      "required": [
        "type",
        "method"
      ],
      "type": "object"
    },
    "output": {
      "properties": {
        "example": {
          "properties": {
            "cache_age_seconds": {
              "type": "number"
            },
            "candle_count": {
              "type": "number"
            },
            "candles": {
              "items": {
                "properties": {
                  "close": {
                    "type": "number"
                  },
                  "high": {
                    "type": "number"
                  },
                  "low": {
                    "type": "number"
                  },
                  "open": {
                    "type": "number"
                  },
                  "time": {
                    "type": "string"
                  },
                  "volume": {
                    "type": "number"
                  }
                },
                "type": "object"
              },
              "type": "array"
            },
            "end": {
              "type": "string"
            },
            "findings": {
              "type": "array"
            },
            "interval": {
              "type": "string"
            },
            "price": {
              "type": [
                "number",
                "null"
              ]
            },
            "source": {
              "description": "coinbase | kraken",
              "type": "string"
            },
            "stale": {
              "type": "boolean"
            },
            "start": {
              "type": "string"
            },
            "stats": {
              "properties": {
                "avg_volume": {
                  "type": "number"
                },
                "change_pct": {
                  "type": [
                    "number",
                    "null"
                  ]
                },
                "close": {
                  "type": "number"
                },
                "open": {
                  "type": "number"
                },
                "period_high": {
                  "type": "number"
                },
                "period_low": {
                  "type": "number"
                }
              },
              "type": "object"
            },
            "symbol": {
              "type": "string"
            },
            "vs": {
              "type": "string"
            }
          },
          "type": "object"
        },
        "type": {
          "type": "string"
        }
      },
      "required": [
        "type"
      ],
      "type": "object"
    }
  },
  "required": [
    "input"
  ],
  "type": "object"
}

This page as JSON