> ## 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.

# Stripe Connect Express

## Overview

<CardGroup cols={3}>
  <Card title="Pre-built tooling" icon="screwdriver-wrench" href="#pre-built-tooling" />

  <Card title="Pre-built integrations" icon="square-check" href="#pre-built-integrations" />

  <Card title="Access requirements" icon="triangle-exclamation" href="#access-requirements" />

  <Card title="Setup guide" icon="rocket" href="#setup-guide" />

  <Card title="Useful links" icon="circle-info" href="#useful-links" />

  <Card title="API gotchas" icon="biohazard" href="#api-gotchas" />
</CardGroup>

**Note**

* Want to integrate with existing Stripe accounts? Use the [Stripe App](/integrations/all/stripe-app) instead.
* Stripe Connect is intended for use with [Stripe’s Connect product](https://stripe.com/connect) and **does not** provide access to existing Stripe accounts via the REST API.
* ⚠️ OAuth for Express accounts is deprecated and not supported for new Connect platforms. Use the [Accounts API with Express onboarding](https://docs.stripe.com/connect/express-accounts) instead. Contact [Stripe support](https://support.stripe.com/) if you need access for an existing platform.

## Pre-built tooling

<AccordionGroup>
  <Accordion title="✅ Authorization">
    | Tools                           | Status |
    | ------------------------------- | ------ |
    | Pre-built authorization (OAuth) | ✅      |
    | Credentials auto-refresh        | ✅      |
    | Pre-built authorization UI      | ✅      |
    | Custom authorization UI         | ✅      |
    | Expired credentials detection   | ✅      |
  </Accordion>

  <Accordion title="✅ Read & write data">
    | Tools                                     | Status                         |
    | ----------------------------------------- | ------------------------------ |
    | Pre-built integrations                    | 🚫 (time to contribute: \<48h) |
    | API unification                           | ✅                              |
    | 2-way sync                                | ✅                              |
    | Webhooks from Nango on data modifications | ✅                              |
    | Real-time webhooks from 3rd-party API     | 🚫 (time to contribute: \<48h) |
    | Proxy requests                            | ✅                              |
  </Accordion>

  <Accordion title="✅ Observability & data quality">
    | Tools                   | Status |
    | ----------------------- | ------ |
    | HTTP request logging    | ✅      |
    | End-to-end type safety  | ✅      |
    | Data runtime validation | ✅      |
    | OpenTelemetry export    | ✅      |
    | Slack alerts on errors  | ✅      |
    | Integration status API  | ✅      |
  </Accordion>

  <Accordion title="✅ Customization">
    | Tools                              | Status                         |
    | ---------------------------------- | ------------------------------ |
    | Create or customize use-cases      | ✅                              |
    | Pre-configured pagination          | 🚫 (time to contribute: \<48h) |
    | Pre-configured rate-limit handling | 🚫 (time to contribute: \<48h) |
    | Per-customer configurations        | ✅                              |
  </Accordion>
</AccordionGroup>

*No pre-built syncs or actions available yet.*

<Tip>Not seeing the integration you need? [Build your own](/guides/functions/functions-guide) independently.</Tip>

## Access requirements

| Pre-Requisites    | Status         | Comment                                                                                |
| ----------------- | -------------- | -------------------------------------------------------------------------------------- |
| Paid dev account  | ✅ Not required | Stripe offers free self service sign up [here](https://dashboard.stripe.com/register). |
| Paid test account | ✅ Not required | Test mode is free and includes full access to API and Connect features.                |
| Partnership       | ✅ Not required | Optional — typically relevant for large-scale or high-volume platforms.                |
| App review        | ✅ Not required | Not required for **Express** using the Accounts API.                                   |
| Security audit    | ✅ Not required | Not required for Express. May be required for **Custom** accounts based on use case.   |

## Setup guide

<Steps>
  <Step title="Create a Stripe account">
    If you don't already have one, sign up for a [Stripe account](https://dashboard.stripe.com/register).
  </Step>

  <Step title="Enable Express Accounts">
    1. Go to your [Platform settings](https://dashboard.stripe.com/account/applications/settings).
    2. Enable onboarding Express accounts with OAuth in the OAuth settings.
  </Step>

  <Step title="Configure OAuth for Express">
    Navigate to [Connect OAuth settings](https://dashboard.stripe.com/settings/connect/onboarding-options/oauth):

    * Add your **Redirect URI(s)**:
      `https://api.nango.dev/oauth/callback`
    * Copy your **Client ID** for integration
  </Step>

  <Step title="Get your Client Secret">
    Navigate to the [Stripe API Keys page](https://dashboard.stripe.com/apikeys) to retrieve your **Secret key**. This acts as your **Client Secret** for the integration.

    **Note**: Remember to switch to your **live secret key** in production.
  </Step>

  <Step title="Next">
    Follow the [*Quickstart*](/getting-started/quickstart).
  </Step>
</Steps>

<Tip>Need help getting started? Get help in the [community](https://nango.dev/slack).</Tip>

<Note>Contribute improvements to the setup guide by [editing this page](https://github.com/nangohq/nango/tree/master/docs/integrations/all/stripe-express.mdx)</Note>

## Useful links

| Topic     | Links                                                                                 |
| --------- | ------------------------------------------------------------------------------------- |
| General   | [Stripe Connect overview](https://stripe.com/connect)                                 |
|           | [Create a Stripe account](https://dashboard.stripe.com/register)                      |
| Developer | [Accounts API (Express onboarding)](https://docs.stripe.com/connect/express-accounts) |
|           | [Testing Stripe Connect](https://docs.stripe.com/connect/testing)                     |
|           | [Connect Dashboard](https://dashboard.stripe.com/settings/connect)                    |

<Note>Contribute useful links by [editing this page](https://github.com/nangohq/nango/tree/master/docs/integrations/all/stripe-express.mdx)</Note>

## API gotchas

*No reported gotchas yet*

<Note>Contribute API gotchas by [editing this page](https://github.com/nangohq/nango/tree/master/docs/integrations/all/stripe-express.mdx)</Note>
