
We're excited to introduce the new /minutely endpoint for MetalpriceAPI. It provides one rate per minute for a single metal or currency, giving teams a more detailed view of intraday price movements.
The endpoint is available to approved Enterprise customers. Contact us to discuss your data and usage requirements.
Daily and hourly prices are useful for broader trends, but meaningful market movements can happen between those observations. Minutely data helps you:
/minutely EndpointRequest one metal over a date range:
https://api.metalpriceapi.com/v1/minutely?api_key=[API_KEY]&base=USD¤cy=XAU&start_date=2026-08-01&end_date=2026-08-01
The response includes the first minute as a Unix timestamp, a 60-second interval, and the rates in order:
{
"success": true,
"base": "USD",
"currency": "XAU",
"start_date": "2026-08-01",
"end_date": "2026-08-01",
"start": 1785542400,
"step": 60,
"values": [
0.0002473207,
0.000247382,
0.0002473414,
0.000247382
]
}
start identifies the first minute in the response. Each following entry in values is the rate for the next 60-second interval.
You can also define a precise time range with start and end Unix timestamps. Date parameters and timestamp parameters cannot be combined in the same request.
If minutely access is enabled for your Enterprise account, see the complete request and response reference in our API documentation.
Need access? Contact our team to discuss coverage and usage requirements.
— MetalpriceAPI Team