Skip to main content

Overview

The ScaleHouse API uses API keys for authentication. Include your API key in the Authorization header of each request.

Getting an API Key

1

Navigate to Settings

Go to Settings → API Keys in your dashboard.
2

Create Key

Click “Create API Key” and give it a name.
3

Copy Key

Copy the API key immediately - it won’t be shown again.

Using API Keys

Include your API key in the Authorization header:
curl -H "Authorization: Bearer YOUR_API_KEY" \
  https://api.scalehousesystems.com/v1/connectors

Security Best Practices

Never commit API keys to version control. Use environment variables instead.

Environment Variables

Store keys in environment variables

Rotate Regularly

Rotate keys periodically

Scope Access

Use keys with minimal required permissions

Revoke When Needed

Revoke compromised keys immediately

Next Steps