> For the complete documentation index, see [llms.txt](https://developer.perculus.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://developer.perculus.com/v2-tr/baslangic/yetkilendirme/nodejs-ile-yetkilendirme.md).

# NodeJS ile Yetkilendirme

Uygulamanızla entegrasyon yapıyorsanız, V2 API için NodeJS SDK'sını kullanabilirsiniz. Yapmanız gereken tek şey, ortamınızda API Anahtarlarını tanımlamak ve,

SDK'yı kurun:

```bash
npm install perculus-sdk@beta
```

kodunuzda import edin:

```javascript
import APIClient from "perculus-sdk";

getClient() {
    const client = new APIClient();
    client.setDomain(process.env.PERCULUS_DOMAIN);
    client.setCredentials({
        accessKey: process.env.PERCULUS_ACCESS_KEY,
        secretKey: process.env.PERCULUS_SECRET_KEY,
    });

    return client;
}
```

ve şimdi SDK'yı kullanmaya hazırsınız.
