# 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")
```
