Getting Started
Quick Start
Quickly start using the API by following this step by step guide
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:
Replace {index_uuid}
with an actual index ID from step 1.
3. Get Index Levels
Retrieve the historical levels for your index:
Replace {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.
Important Reminders
Remember to replace YOUR_API_TOKEN
with your actual API token in all requests.