Overview
Base URL
Authentication
All API endpoints require authentication using an API token. Include your API token in the header of each request:Getting Your API Token
- Log in to your Tilt Pro dashboard
- Click the gear icon in the bottom left of the dashboard
- Select
API Keys
from the menu - Enter API key name and create a new key
Keep your API token secure and never share it publicly. If your token is compromised,
you can revoke it and generate a new one from your dashboard.
Making Your First API Calls
1. List Indexes
Get a list of all indexes you have access to:2. Get Index Details
Fetch detailed information about a specific index:{index_uuid}
with an actual index ID from step 1.
View full API reference →
3. Get Index Levels
Retrieve the historical levels for your index:{index_uuid}
with the same index ID you used in step 2. This will return the index levels from the inception date of the index.
View full API reference →
Important Reminders
Remember to replace
YOUR_API_TOKEN
with your actual API token in all requests.