Developer Preview
Build with AudioScape
Music search, discovery, and audio intelligence APIs for developers building the next generation of interactive experiences.
♫
Music Search
Semantic audio search powered by CLAP embeddings. Find music by mood, vibe, or description — not just keywords.
⚙
API Keys
Self-serve key management. Create, rotate, and monitor your API keys with full usage visibility.
▤
Monitoring
Real-time request metrics, latency tracking, and error rates. Know exactly how your integration performs.
Luau — Quick Start
local HttpService = game:GetService("HttpService")
local RunService = game:GetService("RunService")
-- Use a test key in Studio, Secrets in production
local apiKey = if RunService:IsStudio()
then "your-test-key"
else HttpService:GetSecret("AudioScapeKey")
local response = HttpService:RequestAsync({
Url = "https://api.audioscape.ai/developer/v1/search",
Method = "POST",
Headers = { ["x-api-key"] = apiKey, ["Content-Type"] = "application/json" },
Body = HttpService:JSONEncode({ query = "" })
})