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

# Quickstart

> Get started with Cheesecake Corp in minutes.

## Installation

Install our SDK using your preferred package manager:

<CodeGroup>
  ```bash npm theme={null}
  npm install @cheesecakecorp/sdk
  ```

  ```bash yarn theme={null}
  yarn add @cheesecakecorp/sdk
  ```

  ```bash pnpm theme={null}
  pnpm add @cheesecakecorp/sdk
  ```
</CodeGroup>

## Configuration

Initialize the client with your API key:

```javascript theme={null}
import { CheesecakeClient } from '@cheesecakecorp/sdk';

const client = new CheesecakeClient({
  apiKey: process.env.CHEESECAKE_API_KEY,
});
```

## Your first request

```javascript theme={null}
const order = await client.orders.create({
  flavor: 'new-york',
  quantity: 1,
});

console.log(order);
```

## Next steps

<CardGroup cols={2}>
  <Card title="Guides" icon="book" href="/guides/overview">
    Learn core concepts.
  </Card>

  <Card title="API Reference" icon="code" href="/api-reference/introduction">
    Explore all endpoints.
  </Card>
</CardGroup>


## Related topics

- [Welcome](/index.md)
