Skip to main content

Overview

Base URL

https://api.tilt.io

Authentication

All API endpoints require authentication using an API token. Include your API token in the header of each request:
x-api-key: <your_api_token>

Getting Your API Token

  1. Log in to your Tilt Pro dashboard
  2. Click the gear icon in the bottom left of the dashboard
  3. Select API Keys from the menu
  4. 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:
curl -X GET "https://api.tilt.io/api/v1/indexes" \
  -H "x-api-key: YOUR_API_TOKEN"
View full API reference →

2. Get Index Details

Fetch detailed information about a specific index:
curl -X GET "https://api.tilt.io/api/v1/indexes/{index_uuid}" \
  -H "x-api-key: YOUR_API_TOKEN"
Replace {index_uuid} with an actual index ID from step 1. View full API reference →

3. Get Index Levels

Retrieve the levels for your index:
curl -X GET "https://api.tilt.io/api/v1/indexes/{index_id}/levels" \
  -H "x-api-key: YOUR_API_TOKEN"
Replace {index_id} with the same index ID you used in step 2. View full API reference →

4. Get Index Constituents

Retrieve constituents for your index:
curl -X GET "https://api.tilt.io/api/v1/indexes/{index_id}/constituents" \
  -H "x-api-key: YOUR_API_TOKEN"
View full API reference →

5. Get Index Corporate Actions

Retrieve corporate actions for your index:
curl -X GET "https://api.tilt.io/api/v1/indexes/{index_id}/corporate-actions" \
  -H "x-api-key: YOUR_API_TOKEN"
View full API reference →

Important Reminders

Remember to replace YOUR_API_TOKEN with your actual API token in all requests.