Skip to main content

Bearer token

Include your API key in every request:
curl -H "Authorization: Bearer sk_live_abc123..." \
  https://app.alana.shopping/api/workspace/{workspaceId}/brands

Error responses

StatusDescription
401 UnauthorizedMissing or invalid API key
403 ForbiddenValid key but insufficient permissions for the requested workspace or action
{
  "error": {
    "code": "UNAUTHORIZED",
    "message": "Invalid or expired API key"
  }
}