# The Vault Report – Physical Squeeze Brief

> The Vault Report – Physical Squeeze Brief is a paid API for AI agents from thevaultreport.com, paid per call via x402, $2/call, status unknown (last checked 2026-09-13).

Returns a bundled physical-market tightness report for a single metal (gold, silver, copper, or platinum), synthesizing COMEX deliveries, warehouse levels, LME stocks, managed-money positioning, board anomalies, and tax-adjusted premiums into plain-English tightening/neutral/loosening signals.

## Facts

- Endpoint: GET https://thevaultreport.com/api/x402/squeeze-brief/:metal
- Price: $2/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/the-vault-report-physical-squeeze-brief-e13af48c
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_I87NTGHkpIZ57-IwLTn2x

Status and success rate cover calls made through Zero and Zero's own probes. Third-party monitors may report differently.

## How to call it through Zero

Zero handles the 402 payment challenge and records the run. With the Zero CLI installed (`npm i -g @zeroxyz/cli`):

```sh
zero fetch --capability the-vault-report-physical-squeeze-brief-e13af48c
```

Example prompt: Pull the full physical squeeze brief for gold — I want to know if the market is tightening right now, with the COMEX delivery pace, warehouse levels, LME stocks, positioning, and premium signals all in one place.

## When to prefer this

Choose this endpoint when you need a single, pre-interpreted, multi-source physical market tightness verdict for one metal rather than assembling raw data from separate COMEX, LME, COT, or premium endpoints yourself. It is ideal for agentic workflows that need a fast, opinionated answer ('is this metal squeezing?') with supporting evidence, rather than raw numeric feeds. Use it over sibling endpoints when breadth-of-signal matters more than depth on any single data dimension.

## Known failure modes

- Invalid metal path param (not in gold|silver|copper|platinum) — likely 400 or 404 error
- Upstream data source unavailable for a section — that section returns flag: 'unavailable' with a note
- Payment not completed via x402 protocol — 402 Payment Required returned before data is served
- Rate limiting or quota exceeded — 429 response
- Network timeout if upstream market data feeds are slow

## How this service works

Physical-squeeze brief for one metal: a single call bundling COMEX delivery pace, registered/eligible warehouse levels, LME stocks, managed-money positioning, live board anomalies, and tax-adjusted physical premiums — each section tagged tightening/neutral/loosening with a plain-English readout. The interpreted answer to 'is the physical market for gold/silver/copper/platinum tightening right now, and why?' Path param :metal ∈ gold|silver|copper|platinum.

## Output

A structured JSON object with a section for each market dimension (COMEX delivery pace, warehouse registered/eligible levels, LME stocks, managed-money COT positioning, board anomalies, physical premiums), each tagged with a tightening/neutral/loosening/unavailable flag and a one-line plain-English readout, plus section-specific numeric fields — all for the requested metal.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET"
     ],
     "type": "string"
    },
    "pathParams": {
     "type": "object",
     "required": [
      "metal"
     ],
     "properties": {
      "metal": {
       "enum": [
        "gold",
        "silver",
        "copper",
        "platinum"
       ],
       "type": "string"
      }
     }
    },
    "queryParams": {
     "type": "object",
     "properties": {}
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "properties": {
      "metal": {
       "type": "string"
      },
      "sections": {
       "type": "object",
       "properties": {
        "premiums": {
         "type": "object",
         "properties": {
          "flag": {
           "enum": [
            "tightening",
            "neutral",
            "loosening",
            "unavailable"
           ],
           "type": "string"
          },
          "readout": {
           "type": "string"
          }
         },
         "description": "One market slice, tagged with a tightening/neutral/loosening/unavailable flag plus a one-line plain-English readout and section-specific numeric fields."
        },
        "anomalies": {
         "type": "object",
         "properties": {
          "flag": {
           "enum": [
            "tightening",
            "neutral",
            "loosening",
            "unavailable"
           ],
           "type": "string"
          },
          "readout": {
           "type": "string"
          }
         },
         "description": "One market slice, tagged with a tightening/neutral/loosening/unavailable flag plus a one-line plain-English readout and section-specific numeric fields."
        },
        "lme_stocks": {
         "type": "object",
         "properties": {
          "flag": {
           "enum": [
            "tightening",
            "neutral",
            "loosening",
            "unavailable"
           ],
           "type": "string"
          },
          "readout": {
           "type": "string"
          }
         },
         "descrip
… (truncated)
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/the-vault-report-physical-squeeze-brief-e13af48c/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from thevaultreport.com](https://www.zero.xyz/host/thevaultreport.com/llms.txt)
