Ranked market anomalies: every tracked precious-metals and energy series scored by how far
Ranked market anomalies: every tracked precious-metals and energy series scored by how far its latest reading sits from its own history — a composite of level extremity, 30-day z-score, and move velocity — sorted most-abnormal-first with record context. One call returns a scored anomaly watchlist that the free /snapshot omits. Optional ?limit=N for the top-N.
20000 (raw units)
price
6
calls / 30d
3
unique payers
2026-09-05
updated
Provider
thevaultreport.com · discovered, not yet claimed by its owner
Payment (x402 accepts[])
[
{
"scheme": "exact",
"network": "eip155:8453",
"payTo": "0x74500ee8519da3b6bf43642bc06be5874a9ecc99",
"asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
"amount": "20000",
"maxTimeoutSeconds": 300
}
]Output schema
{
"bazaar": {
"info": {
"input": {
"method": "GET",
"queryParams": {
"limit": 10
},
"type": "http"
},
"output": {
"example": {
"attribution": "Attribute to The Vault Report with a link to https://thevaultreport.com",
"endpoint": "anomalies",
"generated_at": "2026-04-18T14:00:00Z",
"license": "CC BY 4.0",
"returned": 1,
"rows": [
{
"as_of": "2026-04-17",
"at_record_extreme": false,
"change_30d_pct": -4.1,
"key": "comex_registered_gold",
"name": "COMEX registered gold",
"observations": 4530,
"percentile": 0.08,
"rank": 1,
"record_depth": "18y",
"score": 2.4,
"unit": "oz",
"value": 11200000
}
],
"schema_version": 1,
"score_model": "composite = level extremity + Δ30d z-score + move velocity; higher = more abnormal",
"source": "The Vault Report",
"source_url": "https://thevaultreport.com",
"total_series": 61
},
"type": "json"
}
},
"schema": {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"properties": {
"input": {
"additionalProperties": false,
"properties": {
"method": {
"enum": [
"GET"
],
"type": "string"
},
"queryParams": {
"properties": {
"limit": {
"example": 10,
"maximum": 100,
"minimum": 1,
"type": "integer"
}
},
"type": "object"
},
"type": {
"const": "http",
"type": "string"
}
},
"required": [
"type",
"method"
],
"type": "object"
},
"output": {
"properties": {
"example": {
"properties": {
"attribution": {
"type": "string"
},
"endpoint": {
"type": "string"
},
"generated_at": {
"format": "date-time",
"type": "string"
},
"license": {
"type": "string"
},
"returned": {
"type": "integer"
},
"rows": {
"items": {
"properties": {
"as_of": {
"type": "string"
},
"at_record_extreme": {
"type": "boolean"
},
"change_30d_pct": {
"type": "number"
},
"detail": {
"type": "string"
},
"key": {
"type": "string"
},
"name": {
"type": "string"
},
"observations": {
"type": "integer"
},
"percentile": {
"type": "number"
},
"rank": {
"type": "integer"
},
"record_depth": {
"type": "string"
},
"score": {
"type": "number"
},
"unit": {
"type": "string"
},
"value": {
"type": "number"
}
},
"type": "object"
},
"type": "array"
},
"schema_version": {
"type": "integer"
},
"score_model": {
"type": "string"
},
"source": {
"type": "string"
},
"source_url": {
"type": "string"
},
"total_series": {
"type": "integer"
}
},
"required": [
"endpoint",
"rows"
],
"type": "object"
},
"type": {
"type": "string"
}
},
"required": [
"type"
],
"type": "object"
}
},
"required": [
"input"
],
"type": "object"
}
}
}Use it
curl
curl "https://thevaultreport.com/api/x402/anomalies" # -> 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/anomalies");
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/anomalies")
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/4557.json, and this resource appears in /discovery/resources and /discovery/search.