Skip to main content
Source OpenAPI: 0xArchive API 1.5.0; 140 paths; 119 component schemas. Cumulative volume delta bucket.

Required Fields

FieldTypeDescription
buy_volumenumberBuy-side volume for the bucket.
cumulative_deltanumberRunning cumulative delta over the returned window.
deltanumberbuy_volume minus sell_volume for this bucket.
sell_volumenumberSell-side volume for the bucket.
timestampinteger:int64Bucket timestamp in Unix milliseconds.

JSON Schema

{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "CvdBucket",
  "description": "Cumulative volume delta bucket.",
  "type": "object",
  "required": [
    "buy_volume",
    "cumulative_delta",
    "delta",
    "sell_volume",
    "timestamp"
  ],
  "properties": {
    "buy_volume": {
      "description": "Buy-side volume for the bucket.",
      "type": "number",
      "example": 30160211.46768
    },
    "cumulative_delta": {
      "description": "Running cumulative delta over the returned window.",
      "type": "number",
      "example": -2740918.55881
    },
    "delta": {
      "description": "buy_volume minus sell_volume for this bucket.",
      "type": "number",
      "example": -2740918.55881
    },
    "sell_volume": {
      "description": "Sell-side volume for the bucket.",
      "type": "number",
      "example": 32901130.02649
    },
    "timestamp": {
      "description": "Bucket timestamp in Unix milliseconds.",
      "type": "integer",
      "format": "int64",
      "example": 1781593200000
    }
  }
}

Referenced By

Use this shared schema with the generated component index and route-specific endpoint pages during implementation.
Last modified on June 19, 2026