Build with AudioScape
Music search, discovery, and audio intelligence APIs for developers building the next generation of interactive experiences.
Add Music in Minutes
Search by mood, vibe, or description and play tracks in your experience — a few lines of Luau is all it takes.
Let Players Discover
Give players search, genre browsing, curated playlists, and “similar tracks” — all powered by your API key.
See What They Love
Track plays, skips, favorites, and votes across your experiences. See trending tracks and what keeps players engaged.
Luau — Quick Start
local AudioScape = require(game.ServerStorage.AudioScape)
local SoundService = game:GetService("SoundService")
local client = AudioScape.new("your-api-key")
-- Search for music
local result = client:search({ query = "" })
-- Play the first track
local track = result.tracks[1]
local sound = Instance.new("Sound", SoundService)
sound.SoundId = "rbxassetid://" .. track.asset_id
sound:Play()♫
Live on Roblox
See AudioScape in action
We built Bloxtunes — a Spotify-like music experience inside Roblox — powered by the same search, discovery, and audio intelligence APIs you're reading about.