> For the complete documentation index, see [llms.txt](https://docs.zipy.ai/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.zipy.ai/getting-started/install-zipy.md).

# Install Zipy

Getting started is easy. Go to the Install page in the Zipy application after Signing In.&#x20;

<figure><img src="/files/tJzvuzSjGtnwczXrq3ym" alt=""><figcaption></figcaption></figure>

You can use either of the following methods:

1. **Install Zipy via SDK script**

You can achieve this by simply including a two-line JavaScript SDK provided by Zipy in the head section of the html page of your web application.&#x20;

Sample SDK script:&#x20;

<pre data-overflow="wrap"><code><strong>&#x3C;script src="https://cdn.zipy.ai/sdk/v1.0/zipy.min.umd.js" crossorigin="anonymous">&#x3C;/script>
</strong><strong>&#x3C;script> window.zipy &#x26;&#x26; window.zipy.init('YOUR_PROJECT_SDK_KEY');&#x3C;/script>
</strong></code></pre>

**Note:** If you are using **lazy loading** for external scripts on your website, please ensure that the Zipy script is downloaded before calling the `zipy.init()` function.

\
2\.  **Install Zipy via npm**

Following are the steps for installation:

* Install zipy module in the app project:

```
npm i zipyai
```

* Then import zipy module and initialize in your \_app.js or any other source file:

```
import zipy from 'zipyai';
zipy.init('YOUR_PROJECT_SDK_KEY');  
```

Please sign into [*https://app.zipy.ai*](https://app.zipy.ai/) to get your Project SDK Key.


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## 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, and the optional `goal` query parameter:

```
GET https://docs.zipy.ai/getting-started/install-zipy.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

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.
