OpenSea · Schema

OhlcvResponse

List of OHLCV candle data points

NFTMarketplaceWeb3BlockchainTradingDigital Assets

Properties

Name Type Description
candles array List of OHLCV candles
View JSON Schema on GitHub

JSON Schema

OhlcvResponse.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://opensea.io/schemas/OhlcvResponse",
  "title": "OhlcvResponse",
  "type": "object",
  "description": "List of OHLCV candle data points",
  "properties": {
    "candles": {
      "type": "array",
      "description": "List of OHLCV candles",
      "items": {
        "$ref": "#/components/schemas/OhlcvCandleResponse"
      }
    }
  },
  "required": [
    "candles"
  ]
}