REST API + SDK
Use Cadence API keys with the v1 REST API and SDK clients for generation, track lookup, and release workflows.
Cadence gives builders a music-generation API, SDK-ready auth, OpenAPI docs, and an MCP server so agents and apps can create tracks, read libraries, and manage releases.
import { Cadence } from "@cadence/sdk";
const cadence = new Cadence({
apiKey: process.env.CADENCE_API_KEY,
});
const track = await cadence.generate({
prompt: "Miami disco groove with live bass",
mood: "bright",
durationSec: 90,
});Use Cadence API keys with the v1 REST API and SDK clients for generation, track lookup, and release workflows.
Connect Cadence to Cursor, Claude, Codex, and internal agents through MCP so tools can work with music context directly.
Let assistants compose drafts, fetch tracks, prep metadata, and hand off release-ready assets inside your existing workspace.
Developer access is designed for paid Cadence plans with API keys, rate limits, and server-side authentication. Keep secrets in your backend, pass generated tracks into your product, and scale from internal tools to customer-facing workflows.