The main entry point for the Audiotool Nexus SDK. This package enables real-time collaboration and document manipulation for Audiotool projects.
import { createAudiotoolClient } from "@audiotool/nexus";// Create client and set authenticationconst client = await createAudiotoolClient({pat: "at_pat_your_token_here"});// Connect to a projectconst document = await client.createSyncedDocument({ mode: "online", project: "https://beta.audiotool.com/studio?project=abc123"});await document.start();// Access API servicesconst projects = await client.api.projectService.listProjects({}); Copy
import { createAudiotoolClient } from "@audiotool/nexus";// Create client and set authenticationconst client = await createAudiotoolClient({pat: "at_pat_your_token_here"});// Connect to a projectconst document = await client.createSyncedDocument({ mode: "online", project: "https://beta.audiotool.com/studio?project=abc123"});await document.start();// Access API servicesconst projects = await client.api.projectService.listProjects({});
Audiotool Nexus SDK
The main entry point for the Audiotool Nexus SDK. This package enables real-time collaboration and document manipulation for Audiotool projects.
Quick Start