- SDK Credentials — OAuth 2.0 client credentials for direct API access via the SDK. Best for production integrations.
- API Keys — Simple Bearer tokens for the Platform API and server-side console automation. See the API Keys guide for details.
Create SDK credentials
Open SDK Credentials
Visit Console -> SDK Credentials.
Exchange credentials for an access token
Use the client credentials to request a short-lived access token.expires_at timestamp from expires_in, and refresh proactively to avoid downtime.
Authenticate SDK requests
Obtain an access token using the client credentials grant, then pass it to the SDK:JavaScript / TypeScript
PHP / Laravel
- JavaScript:
sdk.setAccessToken(newToken) - PHP:
$sdk->setAccessToken($newToken)
Protect secrets in production
- Scope clients per environment (staging, production) to limit blast radius.
- Rotate credentials regularly using your secrets manager.
- Audit token usage through the console activity logs.

