Authentication
All API requests must be authenticated using your secret API key.
Obtaining Your API Key
- Log in to your Connecteam account
- Go to Settings → API Keys
- Click Add API key
ImportantYour API key is equivalent to a password. Never share it publicly or store it in client-side code.
Making Authenticated Requests
Include your API key in the X-API-KEY header:
curl --request GET \
--url 'https://api.connecteam.com/me' \
--header 'Accept: application/json' \
--header 'X-API-KEY: YOUR_API_KEY'Alternative: OAuth 2.0
For enhanced security with scoped access and short-lived tokens, see OAuth 2.0.
Updated 19 days ago
