API Documentation
Getting Started
Customizing Portfolios
- Portfolio Customization
- GETGet benchmark indexes
- GETGet organization
- PATCHUpdate organization
- GETGet org clients
- POSTCreate org client
- GETGet client details
- PATCHUpdate client
- POSTOptimize client portfolio
- POSTGenerate client proposal
- GETGet organization risk model
- POSTCreate organization risk model
- PUTUpdate organization risk model
Bulk Customization
Customizing Portfolios
Get organization risk model
GET
/
api
/
v1
/
custom
/
org
/
{organization_uuid}
/
risk_model
cURL
Copy
curl --request GET \
--url https://api.tilt.io/api/v1/custom/org/{organization_uuid}/risk_model \
--header 'X-Api-Key: <api-key>'
Copy
{
"risk_covariance": {
"factors": [
"<string>"
],
"matrix": [
[
"<string>"
]
]
},
"risk_loadings": {
"factors": [
"<string>"
],
"loadings": {}
},
"risk_idiosyncratic": {}
}
Authorizations
Path Parameters
Response
200 - application/json
The response is of type object
.
cURL
Copy
curl --request GET \
--url https://api.tilt.io/api/v1/custom/org/{organization_uuid}/risk_model \
--header 'X-Api-Key: <api-key>'
Copy
{
"risk_covariance": {
"factors": [
"<string>"
],
"matrix": [
[
"<string>"
]
]
},
"risk_loadings": {
"factors": [
"<string>"
],
"loadings": {}
},
"risk_idiosyncratic": {}
}
Assistant
Responses are generated using AI and may contain mistakes.