Comprehensive guide to the Nelgifka API, including classes, methods, and usage examples.
npm install @nelgifka/core
The core SDK for integrating with Nelgifka in your JavaScript projects.
<script src="https://cdn.nelgifka.com/v1/core.js"></script>
For HTML projects without a module bundler.
const client = new AuthClient({
apiKey: 'your_api_key',
timeout: 5000
});
const transformer = new DataConverter();
const result = transformer.convert({
type: 'json',
input: raw_data
});
const Nelgifka = require('@nelgifka/core');
const client = new Nelgifka.Client({
auth: {
apiKey: 'your-api-key'
},
baseURL: 'https://api.nelgifka.com/v1'
});
client.authenticate()
.then(token => console.log('Authenticated!'));
{
"status": "success",
"data": { ... },
"meta": {
"timestamp": "2025-08-24T14:30:00Z"
}
}