Skip to main content
GET
/
environment-variables
Get environment variables
curl --request GET \
  --url https://api.nango.dev/environment-variables \
  --header 'Authorization: Bearer <token>'
[
  {
    "name": "MY_SECRET_KEY",
    "value": "SK_373892NSHFNCOWFO..."
  }
]

Documentation Index

Fetch the complete documentation index at: https://nango.dev/docs/llms.txt

Use this file to discover all available pages before exploring further.

Requires an API key with the environment:config:read scope. Learn more about API key scopes.

Authorizations

Authorization
string
header
required

The secret key from your Nango environment.

Response

200 - application/json

Retrieve the environment variables as added in the Nango dashboard

name
string

The name of the environment variable

Example:

"MY_SECRET_KEY"

value
string

The value of the environment variable

Example:

"SK_373892NSHFNCOWFO..."