> ## Documentation Index
> Fetch the complete documentation index at: https://docs.tilt.pro/llms.txt
> Use this file to discover all available pages before exploring further.

# Quick Start

> Quickly start using the API by following this step by step guide

## Overview

### Base URL

```bash theme={null}
https://api.tilt.io
```

### Authentication

All API endpoints require authentication using an API token. Include your API token in the header of each request:

```bash theme={null}
x-api-key: <your_api_token>
```

### Getting Your API Token

1. Log in to your [Tilt Pro dashboard](https://tilt.pro)
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

<Note>
  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.
</Note>

## Making Your First API Calls

### 1. List Indexes

Get a list of all indexes you have access to:

```bash theme={null}
curl -X GET "https://api.tilt.io/api/v1/indexes" \
  -H "x-api-key: YOUR_API_TOKEN"
```

[View full API reference →](/api-reference/endpoint/list-indexes)

### 2. Get Index Details

Fetch detailed information about a specific index:

```bash theme={null}
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 →](/api-reference/endpoint/get-index-details)

### 3. Get Index Levels

Retrieve the levels for your index:

```bash theme={null}
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 →](/api-reference/endpoint/get-index-levels)

### 4. Get Index Constituents

Retrieve constituents for your index:

```bash theme={null}
curl -X GET "https://api.tilt.io/api/v1/indexes/{index_id}/constituents" \
  -H "x-api-key: YOUR_API_TOKEN"
```

[View full API reference →](/api-reference/endpoint/get-index-constituents)

### 5. Get Index Corporate Actions

Retrieve corporate actions for your index:

```bash theme={null}
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 →](/api-reference/endpoint/get-index-corporate-actions)

### Important Reminders

<Note>
  Remember to replace `YOUR_API_TOKEN` with your actual API token in all requests.
</Note>
