Adaptive stems for gaming, VR, spatial audio, and sync. Living, responsive audio that fits any context — the sound becomes a liquid asset.
// Initialize Liquid API client
const client = new LiquidAPI({
apiKey: 'sk_live_...',
environment: 'production'
});
// Request adaptive stems
const response = await client.stems.adaptive({
mood: 'energetic',
intensity: 75,
format: 'spatial',
context: 'gaming'
});
// Use in your game engine
audioEngine.loadStems(response.stems);
audioEngine.play({ fadeIn: 500 });