Roadmap
Access the public product roadmap. No authentication required.
GET
/api/v1/roadmapReturns public roadmap items including planned features, their current status, and estimated release timelines.
Response
200 OKGET/api/v1/roadmap
curl -X GET "https://api.gilito.ai/api/v1/roadmap" \
-H "Authorization: Bearer YOUR_API_KEY"Try It
Example Response
{
"data": [
{
"id": "rm-001",
"title": "Options Chain Data",
"description": "Real-time options chain data with Greeks and IV.",
"status": "planned",
"category": "market_data",
"estimatedRelease": "2026-Q3",
"votes": 142
},
{
"id": "rm-002",
"title": "Multi-Asset Strategies",
"description": "Cross-asset strategy backtesting and signals.",
"status": "in_progress",
"category": "strategies",
"estimatedRelease": "2026-Q2",
"votes": 89
},
{
"id": "rm-003",
"title": "Social Trading Leaderboard",
"description": "Public leaderboard for verified portfolio performance.",
"status": "released",
"category": "copy_trading",
"releasedAt": "2026-03-15T00:00:00.000Z",
"votes": 215
}
]
}