Asset AI Profiles
Access AI-generated profiles for any asset, including regime patterns, strategy affinity, indicator sensitivity, volatility analysis, seasonality, and correlations.
GET
/api/v1/asset-profiles/:assetIdReturns the full AI-generated profile for an asset, including regime patterns, strategy affinity scores, indicator sensitivity, volatility metrics, seasonality patterns, and cross-asset correlations.
Path Parameters
assetIdstring (UUID)requiredThe asset ID.
Response
200 OKGET/api/v1/asset-profiles/:assetId
curl -X GET "https://api.gilito.ai/api/v1/asset-profiles/{assetId}" \
-H "Authorization: Bearer YOUR_API_KEY"Try It
Example Response
{
"data": {
"assetId": "a1b2c3d4-...",
"symbol": "AAPL",
"regimePatterns": {
"current": "trending_up",
"history": [
{ "regime": "trending_up", "from": "2026-03-01", "to": null },
{ "regime": "ranging", "from": "2026-01-15", "to": "2026-02-28" }
]
},
"strategyAffinity": {
"momentum": 0.85,
"meanReversion": 0.32,
"breakout": 0.67,
"trendFollowing": 0.91
},
"indicatorSensitivity": {
"RSI_14": { "predictiveScore": 0.72, "optimalThresholds": { "oversold": 28, "overbought": 74 } },
"MACD": { "predictiveScore": 0.68 },
"BB_20": { "predictiveScore": 0.55 }
},
"volatility": {
"current": 0.22,
"avg30d": 0.19,
"avg90d": 0.21,
"percentile": 65
},
"seasonality": {
"bestMonths": ["January", "April", "November"],
"worstMonths": ["September"],
"dayOfWeekBias": { "monday": 0.02, "friday": -0.01 }
},
"correlations": [
{ "assetId": "e5f6g7h8-...", "symbol": "MSFT", "correlation": 0.82 },
{ "assetId": "i9j0k1l2-...", "symbol": "GOOGL", "correlation": 0.75 }
],
"updatedAt": "2026-04-03T00:00:00.000Z"
}
}GET
/api/v1/asset-profilesReturns AI profiles for multiple assets in a single request.
Query Parameters
assetIds[]string (UUID)requiredArray of asset IDs (max 50 per request).
Response
200 OKGET/api/v1/asset-profiles
curl -X GET "https://api.gilito.ai/api/v1/asset-profiles?assetIds[]={assetIds[]}" \
-H "Authorization: Bearer YOUR_API_KEY"Try It
Example Response
{
"data": [
{
"assetId": "a1b2c3d4-...",
"symbol": "AAPL",
"regimePatterns": { "current": "trending_up" },
"strategyAffinity": { "momentum": 0.85, "trendFollowing": 0.91 },
"volatility": { "current": 0.22, "percentile": 65 },
"updatedAt": "2026-04-03T00:00:00.000Z"
},
{
"assetId": "e5f6g7h8-...",
"symbol": "MSFT",
"regimePatterns": { "current": "ranging" },
"strategyAffinity": { "momentum": 0.62, "meanReversion": 0.78 },
"volatility": { "current": 0.18, "percentile": 42 },
"updatedAt": "2026-04-03T00:00:00.000Z"
}
]
}