Skip to main content

API Keys

All API requests require an API key passed in the Authorization header:
Authorization: Bearer YOUR_API_KEY

Getting Your API Key

1

Sign In

2

Generate Key

Dashboard → Settings → API Keys → Create New Key
3

Copy Key

Copy and securely store your API key

Example Request

curl https://api.boostgpt.co/v1/bots \
  -H "Authorization: Bearer sk_live_abc123xyz" \
  -H "Content-Type: application/json"

Security

  • Keep keys secret - Never expose in client-side code
  • Use environment variables - Store in .env files
  • Rotate regularly - Generate new keys periodically
  • Delete unused keys - Remove old keys from dashboard

Next Steps