Official TypeScript SDK for the Nvisy AI-powered document processing platform. Transform documents into usable data and apply intelligent edits with ease.
- Modern ES2022+ JavaScript target
- Full TypeScript support with strict typing
- Built-in environment variable support
- Individual module exports for optimal bundling
npm install @nvisy/sdkCreate a client with your API token:
import { Client } from "@nvisy/sdk";
const client = new Client({ apiToken: "your-api-token" });
const account = await client.account.get();
const projects = await client.projects.list();import { Client } from "@nvisy/sdk";
const client = new Client({
apiToken: "your-api-token", // Required
baseUrl: "https://api.nvisy.com", // Optional: API endpoint (default shown)
userAgent: "MyApp/1.0.0", // Optional: custom user agent
headers: { // Optional: custom headers
"X-Custom-Header": "value",
},
});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