1
Create a Stripe account
If you don’t already have one, sign up for a Stripe account.
2
Install Stripe CLI
- If you haven’t already, install the Stripe CLI.
- Log in using your Stripe account:
3
Install the Stripe Apps CLI plugin
- Run the following command to install the Stripe Apps plugin:
- Verify the plugin version is 1.5.12 or newer:
4
Create your Stripe App
- Create a new app project using the CLI:
- This creates a local project folder with a manifest and app code.
5
Edit the app manifest
Open the stripe-app.json file and update these fields:
- stripe_api_access_type: Set to oauth
- distribution_type: Set to public
- allowed_redirect_uris: Add your redirect URI as https://api.nango.dev/oauth/callback
- sandbox_install_compatible: Set to true Example:
6
Add required permissions and UI (optional)
- Add permissions your app requires to access Stripe resources in the manifest (e.g., read_only, customers:read, etc.).
- Optionally add a settings view or other UI extensions if your app has a user-facing configuration.
7
Upload your app to Stripe (requires live account)
- Ensure you’re logged into a fully activated (non-sandbox) Stripe account.
- Upload your app to Stripe:
Sandbox accounts cannot upload apps. You must activate your account first.
8
Obtain your Client ID and Client Secret
- Go to your app’s details page in the Stripe Dashboard.
- Open the External test tab.
- Click Get started if you haven’t already configured the external test OAuth setup.
- After setup, Stripe will generate OAuth installation links in the Test OAuth section. Your Client ID will be included in the Sandbox link as a query parameter (e.g.,
client_id=…). - To obtain your Client Secret, go to the API Keys page in the Stripe Dashboard and copy your Secret key (starts with
sk_test_…).
9
Find your App Domain
Your App Domain comes from the same Test OAuth section you used to find your Client ID — see Finding your App Domain for the lookup steps.This value is the same for every connection made through this integration, so set it once on the integration itself rather than per connection: enter it in the App Domain field when creating the
stripe-app-sandbox integration in Nango, or later from the integration’s settings page. If you skip it here, Connect falls back to asking each end user for it instead.10
Next
Follow the Quickstart.