Getting Forward Rates
url = "https://api.bluegamma.io/v1/forward_rate"
params = {
"index": "SOFR",
"start_date": "2025-06-01",
"end_date": "2025-12-01"
}
response = requests.get(url, headers=headers, params=params)
print(response.json())params = {
"index": "SOFR",
"start_date": "2025-06-01",
"end_date": "2025-12-01",
"valuation_time": "2025-04-15T12:00:00Z"
}Last updated
Was this helpful?

