Everything you need to integrate with Lifestream Vault
Browse the complete REST API with interactive examples
TypeScript SDK with typed methods for every endpoint
Command-line tool for automation and scripting
Step-by-step tutorials for blogging, publishing, and more
Get started with the SDK in minutes:
npm install @lifestreamdynamics/vault-sdkimport { LifestreamVaultClient } from '@lifestreamdynamics/vault-sdk';
const client = new LifestreamVaultClient({
baseUrl: 'https://api.example.com',
apiKey: 'lsv_k_...',
});
// List vaults
const vaults = await client.vaults.list();
// Create a document
await client.documents.create({
vaultId: 'vault-id',
path: 'notes/hello.md',
content: '# Hello World',
});