multilogin-x-sdk
v1.1.3
Published
TypeScript SDK for Multilogin X API - generated from Postman collection
Maintainers
Readme
multilogin-x-sdk
TypeScript SDK for Multilogin X API - generated from official Postman collection.
Installation
npm install multilogin-x-sdkRequirements
- Node.js >= 18.0.0 (for native fetch support)
Usage
import { MultiloginClient } from 'multilogin-x-sdk';
const client = new MultiloginClient({
baseUrl: 'https://api.multilogin.com',
// Authentication will be auto-configured from Postman auth scheme
});
// Access endpoints via namespace folders
const profiles = await client.profileManagement.list();
const profile = await client.profileManagement.create({ /* ... */ });
await client.launcher.startProfile(profileId);Generated Namespaces
The SDK is organized into namespaces matching Postman collection folders:
client.launcher- Start, stop, and manage browser profilesclient.profileAccessManagement- Sign in, manage tokens and workspacesclient.profileManagement- Create, update, delete browser profilesclient.browserProfileData- Unlock browser profilesclient.proxy- Proxy managementclient.premadeCookies- Pre-made cookie managementclient.scriptRunner- Script executionclient.profileImportExport- Profile import/export
Authentication
The SDK supports authentication methods defined in the Postman collection:
- Bearer Token (recommended)
- API Key
- Basic Auth
See Multilogin X API Documentation for details on obtaining tokens.
License
MIT
