AudioLasso Docs

Create an API key

Create and use AudioLasso API keys for HTTP requests, SDKs, agents, and automation.

API keys are the default way to call AudioLasso from scripts, coding agents, backends, and CI jobs.

Create a key

  1. Open API keys.
  2. Sign in.
  3. Enter a name like Local dev, Production API, or Agent.
  4. Click Create key.
  5. Copy the key immediately.

Keys are only shown once. Existing keys show their prefix, creation time, and last-used time.

Use the key

Set it in your shell:

export AUDIOLASSO_API_KEY="al_..."

Send it as a bearer token:

curl https://audiolasso.dev/v1/models \
  -H "Authorization: Bearer $AUDIOLASSO_API_KEY"

Scopes

New dashboard keys currently include the scopes needed for normal API usage:

ScopeAllows
audio:separateSubmit separation jobs and read queue status/results
files:writeCreate temporary upload URLs
files:readRead uploaded file metadata
models:readList available models

Revoke a key

Use the revoke button on API keys. Revoked keys stop working immediately.

On this page