
We're excited to introduce the new /minutely endpoint for ForexRateAPI. It provides one exchange rate per minute for a single currency pair, giving teams a more detailed view of intraday FX movements.
The endpoint is available to approved Enterprise customers. Contact us to discuss your data and usage requirements.
Daily and hourly rates are useful for broader trends, but important currency movements can happen between those observations. Minutely data helps you:
/minutely EndpointRequest one currency over a date range:
https://api.forexrateapi.com/v1/minutely?api_key=[API_KEY]&base=USD¤cy=EUR&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": "EUR",
"start_date": "2026-08-01",
"end_date": "2026-08-01",
"start": 1785542400,
"step": 60,
"values": [
0.8673340817,
0.8674424437,
0.8673747004,
0.8674409389
]
}
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.
— ForexRateAPI Team