ToolAssay

Historical crypto price candles (OHLC)

Historical crypto price candles (OHLC). Given a coin id or ticker (e.g. bitcoin, eth, sol) and a window of days (1, 7, 14, 30, 90, 180 or 365) returns open/high/low/close candles with ISO timestamps. For charting, technical analysis, backtesting and trend-detection agents.

Answeringour last check, 2026-09-24
1 of 1checks answered this week
913 msmedian answer time
$0.006listed price per call
$0.006price 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

POST https://agent-commerce-factory-jm.austriaeast.cloudapp.azure.com/v1/crypto/history

CategoryMarket data
Provider hostagent-commerce-factory-jm.austriaeast.cloudapp.azure.com
Networkseip155:8453
Payment schemesexact
Self-reported calls, 30 days5 from 4 payers (the provider's figure, not ours)

Our checks, last 30 days

DayResultHTTPAskedTime
2026-09-24 valid payment request 402$0.006 913 ms

Example input (from the provider)

{
  "body": {
    "coin": "bitcoin",
    "days": 7,
    "vsCurrency": "usd"
  },
  "bodyType": "json",
  "method": "POST",
  "type": "http"
}

Promised output schema (from the provider)

{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "properties": {
    "input": {
      "additionalProperties": false,
      "properties": {
        "body": {
          "properties": {
            "coin": {
              "default": "bitcoin",
              "description": "CoinGecko id or common ticker (e.g. bitcoin, eth, sol).",
              "type": "string"
            },
            "days": {
              "default": 7,
              "description": "History window in days.",
              "enum": [
                1,
                7,
                14,
                30,
                90,
                180,
                365
              ],
              "type": "integer"
            },
            "vsCurrency": {
              "default": "usd",
              "type": "string"
            }
          },
          "required": [],
          "type": "object"
        },
        "bodyType": {
          "enum": [
            "json",
            "form-data",
            "text"
          ],
          "type": "string"
        },
        "method": {
          "enum": [
            "POST"
          ],
          "type": "string"
        },
        "type": {
          "const": "http",
          "type": "string"
        }
      },
      "required": [
        "type",
        "method",
        "bodyType",
        "body"
      ],
      "type": "object"
    },
    "output": {
      "properties": {
        "example": {
          "properties": {
            "candles": {
              "items": {
                "properties": {
                  "close": {
                    "type": [
                      "number",
                      "null"
                    ]
                  },
                  "high": {
                    "type": [
                      "number",
                      "null"
                    ]
                  },
                  "low": {
                    "type": [
                      "number",
                      "null"
                    ]
                  },
                  "open": {
                    "type": [
                      "number",
                      "null"
                    ]
                  },
                  "time": {
                    "type": [
                      "string",
                      "null"
                    ]
                  }
                },
                "type": "object"
              },
              "type": "array"
            },
            "coin": {
              "type": "string"
            },
            "count": {
              "type": "integer"
            },
            "days": {
              "type": "integer"
            },
            "economics": {
              "properties": {
                "sellPriceUsd": {
                  "type": "number"
                },
                "upstreamCostUsdActual": {
                  "type": [
                    "number",
                    "null"
                  ]
                }
              },
              "type": "object"
            },
            "machine": {
              "type": "string"
            },
            "route": {
              "type": "string"
            },
            "vsCurrency": {
              "type": "string"
            }
          },
          "required": [
            "machine",
            "route",
            "candles"
          ],
          "type": "object"
        },
        "type": {
          "type": "string"
        }
      },
      "required": [
        "type"
      ],
      "type": "object"
    }
  },
  "required": [
    "input"
  ],
  "type": "object"
}

This page as JSON