# Quick Start

### Prerequisites

* Node.js (v18+ recommended)
* A modern code editor (VSCode recommended)
* Postman or API testing tool (optional)

### Installation

```
npm install your-sdk-package
```

### Setup `.env`

```
API_BASE_URL=https://api.example.com
API_KEY=your_api_key_here
```

### Sample Initialization

```
const { SDK } = require('your-sdk-package');
const sdk = new SDK(process.env.API_KEY);
```

### Test API Call

```
const user = await sdk.getUserProfile();
console.log(user);
```


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://ludus-dev-doc.ambrus.studio/getting-started/quickstart.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
