v2.0 Now Available

Power Your Apps

With Next-Gen PDF & Image Intelligence

Integrate the world's most robust file manipulation engine directly into your workflow. High-performance, secure, and infinitely scalable.

$ npm install @kyatools/sdk
const kyaTools = require('@kyatools/sdk');
// Initialize the magic
await kyaTools.connect({
apiKey: 'kt_live_8392...',
mode: 'turbo'
});
// Compress PDF & Enhance Image
const result = await kyaTools.process([
'document.pdf',
'scan.jpg'
]);
console.log('Done: ' + result.url);
|