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

# Quickstart

> Get up and running with Stelis in minutes

This guide will help you get started with Stelis quickly. You'll learn how to set up your account, make your first API call, and automate a simple web task.

## Step 1: Sign Up for Stelis

1. Go to [https://stelis.app](https://stelis.app) and click on "Sign Up".
2. Fill in your details and create your account.
3. Once logged in, navigate to the API Keys section and generate a new API key.

## Step 2: Install the Stelis CLI

Install the Stelis CLI using npm:

```bash theme={null}
npm install -g stelis-cli
```

## Step 3: Authenticate the CLI

Authenticate the CLI using your API key:

```bash theme={null}
stelis auth <YOUR_API_KEY>
```

## Step 4: Your First Automation

Let's automate a simple task: searching for a product on Amazon.

Create a file named `search-amazon.js` with the following content:

```javascript theme={null}
const Stelis = require('stelis');

async function searchAmazon() {
  const stelis = new Stelis();
  
  const result = await stelis.browse({
    prompt: "Search for 'wireless headphones' on Amazon and return the title and price of the first result.",
    url: "https://www.amazon.com"
  });

  console.log(result);
}

searchAmazon();
```

Run the script:

```bash theme={null}
node search-amazon.js
```

You should see the title and price of the first wireless headphones result from Amazon.

## Next Steps

Congratulations! You've just automated your first web task with Stelis. To learn more about Stelis's capabilities, check out the following resources:

* [Browser Extension](/browser-extension)
* [Sessions](/sessions)
* [Retrieve API](/retrieve)
* [Skills](/skills)

For more detailed API information, visit our [API Reference](/api-reference/autonomous-api).
