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

# Quickstart Guide

> Get started with Isosceles API quickly using our TypeScript SDKs.

Welcome to the Isosceles API Quickstart Guide. This guide will help you get up and running quickly using our TypeScript SDKs.

## SDK Installation

### TypeScript SDK

To install the TypeScript SDK, use the following npm command:

```bash
npm i @isosceles-ai/sdk
```

## Getting Started with TypeScript

Here's a simple example to get you started with the Isosceles TypeScript SDK.

1. **Install the SDK**

   ```bash
   npm add @isosceles-ai/sdk
   ```

2. **Initialize the Client**

```typescript
import { Isosceles } from "@isosceles-ai/sdk";

const isosceles = new Isosceles({
  security: {
    username: process.env["ISOSCELES_USERNAME"] ?? "",
    password: process.env["ISOSCELES_PASSWORD"] ?? "",
  },
});
```

3. **Make a Request**

```typescript
async function run() {
  const result = await isosceles.brain.createBrain({
    name: "Test - brain",
  });

  // Handle the result
  console.log(result);
}

run();
```

For more details, refer to the [TypeScript SDK documentation](https://www.npmjs.com/package/@isosceles-ai/sdk).

## Next Steps

Once you have installed the SDK and made your first request, explore the following sections to learn more about Isosceles's capabilities:

* **[Authentication Guide](/Authentication)**
* **[Brain Endpoints](/brain)**
* **[Chat Endpoints](/chat)**
* **[Document Endpoints](/document)**
* **[Chatbot Endpoints](/chatbot)**
* **[Integration Endpoints](/integration)**
* **[ogranisation Endpoints](/ogranisation)**

## Need Help?

If you encounter any issues or need further assistance, please contact our support team.

***

By following this guide, you'll be able to quickly integrate Isosceles's powerful features into your applications. Get started now and transform the way your team interacts with your data!
