Fetching Fixing Rates
Retrieve published fixing rates for overnight and term benchmarks like SOFR, SONIA, EURIBOR, and central bank policy rates.
Example: Get Latest Fixing
import requests
url = "https://api.bluegamma.io/v1/fixing"
headers = {"x-api-key": "your_api_key"}
params = {
"index": "SOFR"
}
response = requests.get(url, headers=headers, params=params)
print(response.json()){
"index": "SOFR",
"valuation_date": "2025-12-17",
"fixing_rate": 4.35,
"fixing_date": "2025-12-16"
}Field
Description
Historical Fixings
Available Fixing Indices
Overnight Risk-Free Rates (RFRs)
Index
Currency
Description
Term Rates (IBORs)
Index
Currency
Description
Central Bank Policy Rates
Index
Currency
Description
Use Cases
Verifying a Loan Reset
Building a Fixing History
Common Questions
What's the difference between a fixing and a forward rate?
Why is my fixing rate different from what I see elsewhere?
Can I get intraday fixings?
Last updated
Was this helpful?

