Build with Gilito AI
Access market data, technical indicators, quantitative strategies, broker integrations, copy trading, webhooks, and AI-powered trading signals through a simple REST API.
Authentication
Get your API key and make your first request.
Market Data
Assets, prices, indexes, exchanges, and industries.
Analysis
Technical indicators and quantitative strategies.
Trading
Broker connections, order execution, and copy trading.
Platform
Webhooks, feature flags, and public roadmap.
Rate Limits
Understand usage limits by plan tier.
Quick Start
Make your first API call in seconds. You'll need an API key — see Authentication to get one.
curl "https://api.gilito.ai/api/v1/market-data/assets" \
-H "Authorization: Bearer YOUR_API_KEY"Base URL
All API requests should be made to:
https://api.gilito.ai/api/v1Response Format
All responses return JSON. Single resources are wrapped in data. Lists include optional pagination metadata.
// Single resource
{
"data": { "id": "...", "symbol": "AAPL", ... }
}
// List with pagination
{
"data": [ ... ],
"meta": { "total": 500, "page": 1, "limit": 50 }
}Errors
Errors follow a consistent structure with an error code and message.
{
"error": {
"code": "UNAUTHORIZED",
"message": "Invalid or missing API key."
}
}