Fetching FX Forward Rates
Use the /fx_forward endpoint to get forward exchange rates for any supported currency pair, enabling FX hedging, cash flow forecasting, and valuation models.
Basic Example
import requests
url = "https://api.bluegamma.io/v1/fx_forward"
headers = {"x-api-key": "your_api_key"}
params = {
"currency_pair": "EURUSD",
"date": "2026-06-15"
}
response = requests.get(url, headers=headers, params=params)
data = response.json()
forward_rate = data["rate"]curl -X GET "https://api.bluegamma.io/v1/fx_forward?currency_pair=EURUSD&date=2026-06-15" \
-H "x-api-key: your_api_key_here"Field
Description
Parameters
Parameter
Required
Description
Currency Pair Format
When to Use FX Forward Rates
Use Case
Example
Building an FX Forward Curve

Reproducibility with valuation_time
valuation_timePractical Example: Cash Flow Forecasting
Related Endpoints
If you need...
Use
Error Handling
Last updated
Was this helpful?

