Skip to main content
POST
/
quantlib
/
regulatory
/
basel
/
operational-rwa
curl --request POST \
  --url https://api.fincept.in/quantlib/regulatory/basel/operational-rwa \
  --header 'Content-Type: application/json' \
  --header 'X-API-Key: <api-key>' \
  --data '
{
  "gross_income_3y": [
    45000000,
    48000000,
    52000000
  ]
}
'
{
  "success": true,
  "data": {
    "operational_rwa": 90625000
  }
}

Authorizations

X-API-Key
string
header
required

API key for authentication. Get your key at https://api.fincept.in/auth/register

Body

application/json
gross_income_3y
number[]
required

Gross income for each of the previous 3 years (net interest income + net non-interest income)

Required array length: 3 elements
Example:
[45000000, 48000000, 52000000]

Response

Operational RWA calculated successfully

success
boolean
Example:

true

data
object