API keys
API keys allow programmatic access to your Nango environment. Each environment can have multiple API keys with different permissions, enabling you to follow the principle of least privilege.Managing API Keys
API keys are managed in the Nango UI under Environment Settings > API Keys. Each environment comes with a Default - Full access key that grants access to all API endpoints. You can create additional keys with restricted scopes for specific use cases.Creating a Key
- Go to Environment Settings > API Keys
- Click Create API Key
- Enter a display name (e.g., βCI Deploy Keyβ, βBackend serviceβ)
- Choose Full access or Custom permissions β custom lets you pick individual scopes
- The key is created immediately and can be revealed and copied from the key list
Rotating a Key
To rotate a key:- Create a new key with the same scopes
- Update your application to use the new key
- Monitor the Last used column on the old key to confirm itβs no longer in use
- Delete the old key
Using a Key
Pass the API key as a Bearer token in theAuthorization header:
- Node SDK
- cURL
Scopes
Scopes control what an API key can access. When creating a key with Custom permissions, you select which scopes to grant. A key without a specific scope will receive a403 Forbidden response when trying to access a protected endpoint.
Credential Scopes
Some resources (Integrations and Connections) have sensitive credential data. Access to this data is controlled by dedicated_credentials scopes:
list/readβ returns the resource without sensitive credentialslist_credentials/read_credentialsβ returns the resource with credentials (access tokens, client secrets, etc.)
_credentials scopes are supersets β selecting read_credentials automatically includes read access. You donβt need to select both.
Advised Profiles
Common scope combinations for typical use cases:Auth (Connect UI)
For backends that create connect sessions for the auth flow:CI/CD Deploy
For CI/CD pipelines deploying syncs and actions to production:Backend Service
For backend services that consume data, trigger actions, and proxy requests:
Add
environment:connections:read_credentials if the service needs access to connection tokens.
Local Development
For local development, use a Full access key. This is the default key created for each environment.CLI
The Nango CLI uses theNANGO_SECRET_KEY_<ENV> environment variable for authentication. Set it to an API key with the required scopes:
For most functions,
environment:connections:read is sufficient for nango dryrun β Nango injects credentials into the proxy automatically, so the function does not need them in its response. Upgrade to environment:connections:read_credentials when the function reads credential data from the connection, including:
- accessing
connection.credentialsdirectly (e.g.nango.getConnection().credentials) - calling
nango.getToken()β returns the access token fromconnection.credentials - calling
nango.getRawTokenResponse()β returnsconnection.credentials.raw
read_credentials, these helpers return empty values because the API strips the credentials field from the response.
The Default - Full access key that comes with each environment already has all required scopes for deploying and dry-running. For production CI/CD pipelines, consider creating a dedicated key with only the environment:deploy scope to follow the principle of least privilege.
All Available Scopes
Integrations
Connections
Connect Sessions
Syncs
Deploy
Functions
Records
Logs
The
environment:logs:read scope is currently only used by the Logs tools in the Management MCP server.