Examples & Use Cases
Regulatory Compliance Examples
Basel III, IFRS 9 workflows
⌘I
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Basel III, IFRS 9 workflows
response = requests.post(
"https://api.fincept.in/quantlib/regulatory/basel-capital-ratio",
headers={"X-API-Key": API_KEY},
json={
"tier1_capital": 100000000,
"tier2_capital": 50000000,
"risk_weighted_assets": 500000000
}
)
response = requests.post(
"https://api.fincept.in/quantlib/regulatory/sa-ccr",
headers={"X-API-Key": API_KEY},
json={
"trades": [...],
"netting_set": "set1",
"collateral": 1000000
}
)
