```html ``` ```html SDK • Elenik
  • Home
  • SDK Overview

Software Development Kit (SDK) Overview

Integrate Elenik's platform into your projects with Elenik's SDK.


const elenik = require('@elenik/sdk');
const client = new elenik.Client({apiKey: 'YOUR_API_KEY'});
const result = await elenik.get('/search?query=software');

                        

🛠 Getting Started

You can install Elenik's SDK using Npm by running the command:

                            npm install elenik-platform-sdk
                        
const {ElenikSDK} = require('elenik-sdk')

SDK API Reference


class SDKExample {
    constructor(config) {
        this.apiKey = config.apiKey;
    }

    getSDKToken() {
        return fetch('https://api.elenik.org/auth/token')
            .then(r => r.json())
            then(res => {
    return res.data
});


```

                            
For additional help visit our GitHub . 12
```