GET
/
v1
/
spot-prices
curl --request GET \
  --url https://public.api.collectpure.com/v1/spot-prices \
  --header 'x-api-key: <api-key>'
{}

Retrieve current spot prices for all precious metals. This endpoint returns the current bid/ask prices, market status, and price changes for all supported materials.

Response Example

{
  "Gold": {
    "updatedAt": "2025-03-06 21:56:00.509169+00",
    "marketOpen": true,
    "bid": 2909.2,
    "ask": 2913.2,
    "changePercent": -0.23,
    "changePrice": -6.8
  },
  "Silver": {
    "updatedAt": "2025-03-06 21:56:01.961367+00",
    "marketOpen": true,
    "bid": 32.61,
    "ask": 32.71,
    "changePercent": 0.23,
    "changePrice": 0.08
  },
  "Platinum": {
    "updatedAt": "2025-03-06 21:56:02.26786+00",
    "marketOpen": true,
    "bid": 968.6,
    "ask": 976.6,
    "changePercent": 0.49,
    "changePrice": 4.8
  },
  "Palladium": {
    "updatedAt": "2025-03-06 21:56:02.395747+00",
    "marketOpen": true,
    "bid": 934,
    "ask": 954,
    "changePercent": 0.31,
    "changePrice": 2.9
  },
  "Bitcoin": {
    "updatedAt": "2025-03-06 21:56:00.337613+00",
    "marketOpen": true,
    "bid": 89431.84,
    "ask": 89451.84,
    "changePercent": -1.0419609,
    "changePrice": -932.05
  }
}

Understanding Spot Prices

Spot prices represent the current market price at which a precious metal can be bought or sold for immediate delivery. The API provides both bid and ask prices:

  • Bid Price: The price at which buyers are willing to purchase the metal
  • Ask Price: The price at which sellers are willing to sell the metal

The difference between the ask and bid prices is known as the spread, which represents the dealer’s profit margin.

Market Status

The marketOpen field indicates whether the market for that particular metal is currently open for trading. Markets typically operate Sunday through Friday but may close for holidays or other special circumstances.

Price Changes

The API provides two metrics for tracking price changes:

  • changePercent: Percentage change in price from the previous day’s close
  • changePrice: Absolute price change from the previous day’s close (in USD)

Authorizations

x-api-key
string
header
required

API key for authentication

Response

200
application/json

Spot prices by material type

{key}
object