# SuVerse Precious Metals Spot Prices

> SuVerse Precious Metals Spot Prices is a paid API for AI agents from proxy.suverse.io, paid per call via x402, $0.005/call, status unknown (last checked 2026-09-14).

Returns current spot prices (USD per troy ounce) and OHLC data for gold, silver, platinum, and palladium via Stooq feed

## Facts

- Endpoint: POST https://proxy.suverse.io/v1/data/suverse-precious-metals
- Price: $0.005/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 1
- Tags: x402
- Canonical page: https://www.zero.xyz/c/proxy-suverse-io-42fedeb1
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_r1a8MU6fxIU-yl700LtZM

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 proxy-suverse-io-42fedeb1 -d '<json body>'
```

Example prompt: What are the current spot prices for gold, silver, platinum, and palladium in USD per troy ounce, including today's open, high, low, and close?

## When to prefer this

Use this endpoint when you need real-time or near-real-time precious metals spot prices (gold, silver, platinum, palladium) with OHLC data for cross-asset analysis, inflation hedging, portfolio diversification, or gold-to-crypto ratio calculations. Prefer this over generic financial APIs when you need all four major metals in a single call with USD troy ounce pricing.

## Known failure modes

- Stooq feed unavailable — upstream data source outage returns error
- Stale prices if Stooq feed has not updated recently (e.g. market closed on weekends/holidays)
- Payment failure if USDC balance insufficient or x402 payment not included
- Network timeout from proxy layer

## How this service works

Spot prices in USD per troy ounce for gold XAU, silver XAG, platinum XPT, palladium XPD with latest OHLC from Stooq. AI agent precious-metals tracker, gold-bitcoin ratio analyst, inflation hedge, diversification calculator, macro asset API.

## Output

Returns current USD spot prices per troy ounce for gold, silver, platinum, and palladium, along with the latest open, high, low, and close (OHLC) values sourced from the Stooq quote feed.

## Example request

```json
{
 "unit": "troy_ounce",
 "metals": [
  "gold",
  "silver",
  "platinum",
  "palladium"
 ],
 "currency": "USD"
}
```

## 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",
    "bodyType",
    "body"
   ],
   "properties": {
    "body": {
     "properties": {}
    },
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "POST",
      "PUT",
      "PATCH"
     ],
     "type": "string"
    },
    "bodyType": {
     "enum": [
      "json",
      "form-data",
      "text"
     ],
     "type": "string"
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/proxy-suverse-io-42fedeb1/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from proxy.suverse.io](https://www.zero.xyz/host/proxy.suverse.io/llms.txt)
