> ## Documentation Index
> Fetch the complete documentation index at: https://docs.fincept.in/llms.txt
> Use this file to discover all available pages before exploring further.

# Regulatory Compliance Examples

> Basel III, IFRS 9 workflows

# Regulatory Compliance Examples

Calculate Basel III capital requirements and IFRS 9 ECL.

## Basel III Capital Ratio

```python theme={null}
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
    }
)
```

**Cost:** 5 credits

## SA-CCR Calculation

```python theme={null}
response = requests.post(
    "https://api.fincept.in/quantlib/regulatory/sa-ccr",
    headers={"X-API-Key": API_KEY},
    json={
        "trades": [...],
        "netting_set": "set1",
        "collateral": 1000000
    }
)
```

**Cost:** 5 credits

[More examples →](/advanced-workflows)
