Official TypeScript SDK for Nvisy document processing platform
npm install @nvisy/sdk

Official TypeScript SDK for the Nvisy AI-powered document processing platform.
- Modern ES2022+ JavaScript target
- Full TypeScript support with strict typing
- Debug logging for development
- Individual module exports for optimal bundling
``bash`
npm install @nvisy/sdk
`typescript
import { Nvisy } from "@nvisy/sdk";
const nvisy = new Nvisy({
apiToken: "your-api-token", // Required
baseUrl: "https://api.nvisy.com", // Optional
userAgent: "MyApp/1.0.0", // Optional
withLogging: true, // Optional
headers: { // Optional
"X-Custom-Header": "value",
},
});
const account = await nvisy.account.getAccount();
const workspaces = await nvisy.workspaces.listWorkspaces();
``
See CHANGELOG.md for release notes and version history.
See CONTRIBUTING.md for development guidelines.
MIT License - see LICENSE.txt for details.
- Documentation: docs.nvisy.com
- Issues: GitHub Issues
- Email: support@nvisy.com