@mikshi/sdk
v0.1.1
Published
Node.js SDK for the Mikshi Video Platform Developer API.
Maintainers
Readme
Mikshi Node.js SDK
The official Node.js SDK for the Video Platform Developer API.
Documentation
- Node.js SDK reference — install, quick start, every resource, response shapes, recipes.
- HTTP API reference — wire protocol if you are calling the API without the SDK.
Install
npm install @mikshi/sdkRequires Node.js 18+.
Quick start
import { Client } from '@mikshi/sdk';
const client = new Client({
apiKey: 'sk_...',
baseUrl: 'https://vision.mikshi.ai',
});
const collections = await client.collections.list({ page: 1, pageSize: 10 });
console.log(`${collections.total} collection(s)`);For full usage — every resource, response shapes, and recipes — see the Node.js SDK reference.
