# Installation

The first phase of `defispot-sdk-basic` is available to use as an NPM package for dApps interested in integrating Defispot API. Here are Github and NPM links to our SDK.

{% embed url="<https://github.com/rango-exchange/rango-sdk/tree/basic-api>" %}

{% embed url="<https://www.npmjs.com/package/rango-sdk-basic>" %}

## Quick Start

First, install the SDK using this command:

```bash
# Install via NPM

npm install rango-sdk-basic --save
```

Then you could initiate RangoClient using your own [API key](https://defispot.gitbook.io/dev-documentation/basic-sdk-recommended/basic-sdk-single-tx/broken-reference):

```typescript
import { RangoClient } from "rango-sdk-basic"

const rangoClient = new RangoClient(RANGO_API_KEY)
```

In the next sections, we will discover available methods for `RangoClient`.
