COMEX warehouse inventory: registered, eligible and total levels plus the per-depository b
COMEX warehouse inventory: registered, eligible and total levels plus the per-depository breakdown, by metal and date. Quantities are in CME's reporting unit per metal: troy ounces for gold/silver/platinum/palladium, SHORT TONS for copper, metric tonnes for aluminum/zinc/lead. Extracted from CME's daily warehouse PDFs.
10000 (raw units)
price
7
calls / 30d
5
unique payers
2026-09-03
updated
Provider
thevaultreport.com · discovered, not yet claimed by its owner
Payment (x402 accepts[])
[
{
"scheme": "exact",
"network": "eip155:8453",
"payTo": "0x74500ee8519da3b6bf43642bc06be5874a9ecc99",
"asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
"amount": "10000",
"maxTimeoutSeconds": 300
}
]Output schema
{
"bazaar": {
"info": {
"input": {
"method": "GET",
"queryParams": {
"from": "2026-01-01",
"metal": "gold",
"page": 1,
"to": "2026-04-30"
},
"type": "http"
},
"output": {
"example": {
"attribution": "Attribute to The Vault Report with a link to https://thevaultreport.com",
"endpoint": "comex/warehouse",
"filters": {
"metal": "gold"
},
"generated_at": "2026-04-18T14:00:00Z",
"license": "CC BY 4.0",
"next_page": 2,
"page": 1,
"page_size": 25,
"related": [],
"returned": 1,
"rows": [
{
"activity_date": "2026-04-17",
"eligible_adjustment_qty": 11200000,
"eligible_qty": 11200000,
"metal": "GOLD",
"pledged_qty": 11200000,
"received_qty": 11200000,
"registered_adjustment_qty": 11200000,
"registered_qty": 11200000,
"total_adjustment_qty": 11200000,
"total_qty": 11200000,
"warehouse_breakdown": {
"warehouses": [
{
"eligible": 1830000,
"name": "Brink's",
"registered": 4210000
},
{
"eligible": 2410000,
"name": "JPMorgan",
"registered": 6990000
}
]
},
"withdrawn_qty": 11200000
}
],
"schema_version": 1,
"source": "The Vault Report",
"source_url": "https://thevaultreport.com",
"total_matches": 1482
},
"type": "json"
}
},
"schema": {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"properties": {
"input": {
"additionalProperties": false,
"properties": {
"method": {
"enum": [
"GET"
],
"type": "string"
},
"queryParams": {
"properties": {
"from": {
"example": "2026-01-01",
"format": "date",
"type": "string"
},
"metal": {
"enum": [
"gold",
"silver",
"copper",
"platinum"
],
"example": "gold",
"type": "string"
},
"page": {
"default": 1,
"example": 1,
"minimum": 1,
"type": "integer"
},
"to": {
"example": "2026-04-30",
"format": "date",
"type": "string"
}
},
"type": "object"
},
"type": {
"const": "http",
"type": "string"
}
},
"required": [
"type",
"method"
],
"type": "object"
},
"output": {
"properties": {
"example": {
"properties": {
"attribution": {
"type": "string"
},
"endpoint": {
"type": "string"
},
"filters": {
"description": "Echo of the filters that were applied.",
"type": "object"
},
"generated_at": {
"format": "date-time",
"type": "string"
},
"license": {
"type": "string"
},
"next_page": {
"description": "Next page number, or null when this is the last page.",
"type": [
"integer",
"null"
]
},
"page": {
"type": "integer"
},
"page_size": {
"type": "integer"
},
"related": {
"description": "Sibling endpoints worth buying next.",
"items": {
"type": "object"
},
"type": "array"
},
"returned": {
"type": "integer"
},
"rows": {
"items": {
"properties": {
"activity_date": {
"format": "date",
"type": "string"
},
"eligible_adjustment_qty": {
"type": "number"
},
"eligible_qty": {
"type": "number"
},
"metal": {
"type": "string"
},
"pledged_qty": {
"type": "number"
},
"received_qty": {
"type": "number"
},
"registered_adjustment_qty": {
"type": "number"
},
"registered_qty": {
"type": "number"
},
"total_adjustment_qty": {
"type": "number"
},
"total_qty": {
"type": "number"
},
"warehouse_breakdown": {
"description": "Per-depository detail: {\"warehouses\": [{\"name\", \"registered\", \"eligible\", ...}]}.",
"properties": {
"warehouses": {
"items": {
"properties": {
"eligible": {
"type": "number"
},
"name": {
"type": "string"
},
"registered": {
"type": "number"
}
},
"type": "object"
},
"type": "array"
}
},
"type": "object"
},
"withdrawn_qty": {
"type": "number"
}
},
"type": "object"
},
"type": "array"
},
"schema_version": {
"type": "integer"
},
"source": {
"type": "string"
},
"source_url": {
"type": "string"
},
"total_matches": {
"type": "integer"
}
},
"required": [
"endpoint",
"rows",
"total_matches"
],
"type": "object"
},
"type": {
"type": "string"
}
},
"required": [
"type"
],
"type": "object"
}
},
"required": [
"input"
],
"type": "object"
}
}
}Use it
curl
curl "https://thevaultreport.com/api/x402/comex/warehouse" # -> 402 Payment Required, accepts[] lists how to pay # retry with a PAYMENT-SIGNATURE (or PAYMENT header) once paid
JavaScript
const res = await fetch("https://thevaultreport.com/api/x402/comex/warehouse");
if (res.status === 402) {
const { accepts } = await res.json();
// pay one of accepts[] via an x402 client, then retry with the payment header
}Python
import httpx
res = httpx.get("https://thevaultreport.com/api/x402/comex/warehouse")
if res.status_code == 402:
accepts = res.json()["accepts"]
# pay one of accepts[] via an x402 client, then retry with the payment headerMachine-readable
Everything on this page is also available as clean JSON at /resources/4556.json, and this resource appears in /discovery/resources and /discovery/search.