Endpoints

Interactive API endpoint reference for the Lotsofsounds sound effects API — try requests, view schemas, and explore parameters

Browse the full API reference below. Each endpoint includes request parameters, response schemas, and code samples in cURL, JavaScript, Go, Python, Java, and C#.

Try it live

Each endpoint page has a Send button — enter your API key and test requests directly from the docs.

Authentication

Most endpoints require an API key passed via the x-api-key header. Get your key — requires a Pro or Enterprise plan.

Public endpoints

The Samples endpoints are free and require no authentication — use them to explore the API before subscribing:

Terminal
curl https://api.lotsofsounds.com/api/v1/sounds/sample

Authenticated endpoints

Search, get details, and download sounds with your API key:

curl "https://api.lotsofsounds.com/api/v1/sounds?q=thunder" \
  -H "x-api-key: los_your_api_key_here"
const res = await fetch(
  "https://api.lotsofsounds.com/api/v1/sounds?q=thunder",
  { headers: { "x-api-key": "los_your_api_key_here" } }
);
const { data, pagination } = await res.json();
import requests

res = requests.get(
    "https://api.lotsofsounds.com/api/v1/sounds",
    params={"q": "thunder"},
    headers={"x-api-key": "los_your_api_key_here"},
)
data = res.json()

Rate limits

PlanPriceRequests/dayDownloadsAPI keys
Pro$15/mo2,500Unlimited2
Enterprise$49/mo50,000Unlimited20

See Authentication for details on rate limit headers and error handling.

Ready to integrate?

Get your API key and start building with thousands of sound effects and music tracks.

Get your API key

On this page