POST /v1/stems/adaptive
"request_id": "req_7k4mq9x2n1"
"stems": [
"url": "https://stems.liquid-api.ge/audio/vocal_2k4m9.wav",
"stem_type": "vocal",
"duration_ms": 243000
]
"metadata": {
"bpm": 124,
"time_signature": "4/4",
"waveform_hash": "0x7f3a9k2m1"
}
Unity SDK
v2.4.1 · Game Engines
Unreal Plugin
v1.8.0 · Game Engines
Spatial Audio API
v3.2.0 · Audio Tech
Web SDK
v1.6.2 · Browser
12.4M
API Calls (30d)
340
Active Developers
47
Game Titles Live
99.8%
Uptime (SLA)
// 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 });