API Documentation
Getting Started
Customizing Portfolios
Bulk Customization
Indexes
Get Index Details
GET
/
api
/
v1
/
indexes
/
{index_uuid}
curl --request GET \
--url https://api.tilt.io/api/v1/indexes/{index_uuid} \
--header 'X-Api-Key: <api-key>'
{
"uuid": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"summary": "<string>",
"description": "<string>",
"name": "<string>",
"start_date": "2023-12-25",
"ticker_count": 123,
"rules": {
"market_cap_threshold": "<string>",
"rebalancing_period": "MONTHLY",
"reconstitution_period": "MONTHLY",
"volume_threshold": "<string>",
"volume_threshold_months": 1073741823,
"max_position_weight": "<string>",
"top_n_positions": 1073741823,
"top_n_position_weight": "<string>",
"weighting_strategy": "EQUAL_WEIGHTED",
"filters": [
{
"comparison_type": "and",
"field": "<string>",
"operator": "gte",
"value": "<string>",
"value_type": "number",
"children": [
{}
]
}
]
},
"weights": [
{
"ticker": {
"symbol": "<string>",
"name": "<string>"
},
"date": "2023-11-07T05:31:56Z",
"score": "<string>",
"weight": "<string>"
}
]
}
Authorizations
Path Parameters
Response
200 - application/json
The response is of type object
.
curl --request GET \
--url https://api.tilt.io/api/v1/indexes/{index_uuid} \
--header 'X-Api-Key: <api-key>'
{
"uuid": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"summary": "<string>",
"description": "<string>",
"name": "<string>",
"start_date": "2023-12-25",
"ticker_count": 123,
"rules": {
"market_cap_threshold": "<string>",
"rebalancing_period": "MONTHLY",
"reconstitution_period": "MONTHLY",
"volume_threshold": "<string>",
"volume_threshold_months": 1073741823,
"max_position_weight": "<string>",
"top_n_positions": 1073741823,
"top_n_position_weight": "<string>",
"weighting_strategy": "EQUAL_WEIGHTED",
"filters": [
{
"comparison_type": "and",
"field": "<string>",
"operator": "gte",
"value": "<string>",
"value_type": "number",
"children": [
{}
]
}
]
},
"weights": [
{
"ticker": {
"symbol": "<string>",
"name": "<string>"
},
"date": "2023-11-07T05:31:56Z",
"score": "<string>",
"weight": "<string>"
}
]
}