Skip to main content

API keys

Nango has two API key types. They are not interchangeable.
  • Environment API keys grant access to a single environment (integrations, connections, functions, records, proxy, and related APIs). Each key can have full access or a custom set of environment scopes.
  • Account API keys grant access to account-level APIs only. They do not grant access to any environment.
Most integrations use Environment API keys. Account API keys are for account-level automation and are managed separately.

Environment API keys

Environment API keys authenticate requests against a single Nango environment. Use them with environment-level APIs for integrations, connections, functions, records, and proxy requests. Manage Environment API keys under Environment Settings > API Keys.

Managing Environment API keys

Each environment comes with a Default - Full access key that grants access to all environment API endpoints. You can create additional keys with restricted scopes for specific use cases.

Creating an Environment API key

  1. Go to Environment Settings > API Keys
  2. Click Create API Key
  3. Enter a display name (e.g., β€œCI Deploy Key”, β€œBackend service”)
  4. Choose Full access or Custom permissions β€” custom lets you pick individual scopes
  5. The key is created immediately and can be revealed and copied from the key list

Rotating an Environment API key

To rotate a key:
  1. Create a new key with the same scopes
  2. Update your application to use the new key
  3. Monitor the Last used column on the old key to confirm it’s no longer in use
  4. Delete the old key

Using an Environment API key

Pass the Environment API key as a Bearer token in the Authorization header:

Scopes

Scopes control what an Environment 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 a 403 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 credentials
  • list_credentials / read_credentials β€” returns the resource with credentials (access tokens, client secrets, etc.)
The _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.
For extra security, avoid when possible granting environment:connections:list to backend services. Without it, connection IDs act as connection-specific secrets β€” a leaked Environment API key alone won’t let an attacker enumerate and access customer data.

Local development

For local development, use a Full access key. This is the default key created for each environment.

CLI

The Nango CLI uses the NANGO_SECRET_KEY_<ENV> environment variable for authentication. Set it to an Environment 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.credentials directly (e.g. nango.getConnection().credentials)
  • calling nango.getToken() β€” returns the access token from connection.credentials
  • calling nango.getRawTokenResponse() β€” returns connection.credentials.raw
Without 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.

Actions

Proxy

Variables

Webhooks

MCP

Account API keys

Account API keys authenticate requests against account-level APIs. They do not grant access to any environment. They always have full account access and can only be managed by account administrators. Manage Account API keys from Account API keys in the Nango dashboard (also available from the profile menu).

Using an Account API key

Pass the Account API key as a Bearer token in the Authorization header. Account API keys cannot call environment-level endpoints β€” use an Environment API key for those.