> For the complete documentation index, see [llms.txt](https://docs.fetcch.xyz/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.fetcch.xyz/how-to-integrate/sdk-quickstart.md).

# SDK Quickstart

We currently do have a Typescript SDK, soon we will have android & iOS SDKs ready

#### Install SDK

```bash
// using npm
npm i @fetcch/api

// using yarn

yarn add @fetcch/api

// using pnpm

pnpm i @fetcch/api
```

#### Instantiate SDK

```typescript
import Fetcch from "@fetcch/api"

const fetcch = new Fetcch("SECRET_KEY")
```
