Authentication
Authenticate AudioLasso API requests with bearer API keys.
All /v1 API requests use bearer API keys.
Authorization: Bearer al_...Example
curl https://audiolasso.dev/v1/models \
-H "Authorization: Bearer $AUDIOLASSO_API_KEY"Missing or invalid keys
Unauthenticated requests return 401.
{
"error": {
"code": "UNAUTHENTICATED",
"message": "Missing or invalid API key."
}
}Permission errors
Valid keys without the required scope return 403.
{
"error": {
"code": "PERMISSION_DENIED",
"message": "API key does not have the required scope."
}
}Browser sessions
Dashboard pages use your signed-in browser session. Server-to-server requests should use API keys.