Link overview
Use Link to connect to your users' financial accounts with the Plaid API
Introduction to Link
Plaid Link is the client-side component that your users will interact with in order to link their accounts to Plaid and allow you to access their accounts via the Plaid API.
Plaid Link will handle credential validation, multi-factor authentication, and error handling for each institution that Plaid supports. Link is supported via SDKs for all modern browsers and platforms, including web, iOS, Android, as well as via React Native, along with community-supported wrappers for Flutter, Angular, and Vue.
For webview-based integrations or integrations that don't have a frontend, Plaid also provides a drop-in Hosted Link integration mode.
To try Link, see Plaid Link Demo.
Link is the only available method for connecting accounts in Production and is mandatory for all Plaid integrations. In the Sandbox test environment, Link can optionally be bypassed for testing purposes via /sandbox/public_token/create
.
Want to build a Plaid-powered application using Link directly in your browser? The Plaid Basics interactive tutorial can walk you through the process.
Link flow overview
The diagram below shows a model of how Link is used to obtain a public_token
, which can then be exchanged for an access_token
, which is used to authenticate requests to the Plaid API. This pattern is used for most products that use Link.
/link/token/create
to create a link_token
and pass the temporary token to your app's client.link_token
to open Link for your user. In the onSuccess
callback, Link will provide a temporary public_token
./item/public_token/exchange
to exchange the public_token
for a permanent access_token
and item_id
for the new Item
.access_token
and use it to make product requests for your user's Item
.In code, this flow is initiated by creating a link_token
and using it to initialize Link. The
link_token
can be configured with the Plaid products you will be using and the countries you will
need to support. Once the user has logged in via Link, Link will issue a callback containing a
public_token
, which can be exchanged for an access_token
via /item/public_token/exchange
.
Initializing Link
Link is initialized by passing the link_token
to Link. The exact implementation details for passing the link_token
will vary by platform. For detailed instructions, see the page for your specific platform: web, iOS, Android, React Native or mobile webview.
For recommendations on configuring the link_token
for your use case, see Choosing how to initialize products.
Supporting OAuth
Some institutions use an OAuth authentication flow, in which Plaid Link redirects the end user to their bank's website or mobile app to authenticate. To learn how to connect to an institution that uses OAuth, see the OAuth guide.
Customizing Link
You can customize parts of Link's flow, including some text elements, the institution select view, and the background color, and enable additional features like the Account Select view straight from the Dashboard. You can preview your changes in realtime and then publish them instantly once you're ready to go live. For more details, see Link customization.
To help you take advantage of the options available for customizing and configuring Link, Plaid offers a best practices guide with recommendations for how to initialize and configure Link within your app.
Link's appearance will also automatically change if the institution selected is not in a healthy state. For more details, see Institution status in Link.
Returning user flows
The returning user flow allows you to enable a faster Plaid Link experience for your users who already use Plaid. To learn more, see Returning user experience.
Error-handling flows
If your application will access an Item on a recurring basis, rather than just once, it should support update mode. Update mode allows you to refresh an Item if it enters an error state, such as when a user changes their password or MFA information. For more information, see Updating an Item.
It's also recommended to have special handling for when a user attempts to link the same Item twice. Requesting access tokens for duplicate Items can lead to higher bills and end-user confusion. To learn more, see preventing duplicate Items.
Occasionally, Link itself can enter an error state if the user takes over 30 minutes to complete the Link process. For information on handling this flow, see Handling invalid Link tokens.
Optimizing Link conversion
How you configure Link can have a huge impact on the percentage of users who successfully complete the Link flow. To ensure you're maximizing conversion, see Best practices for Link conversion.
Link token migration
Prior to July 2020, Link was initialized using a public key instead of a link_token
. If you are an existing Plaid developer using a Plaid public key, it is recommended that you migrate to a link_token
-based implementation as soon as possible, using the instructions in the Link token migration guide. For those who are not yet ready to migrate, instructions on maintaining a legacy integration can be found in the legacy integration guide.
Troubleshooting
Since all your users will go through Link, it's important to build as robust an integration as possible. For details on dealing with common problems, see the Troubleshooting section.
Link updates
Plaid periodically updates Link to add new functionality and improve conversion. These changes will be automatically deployed. Any test suites and business logic in your app should be robust to the possibility of changes to the user-facing Link flow.
Users of Plaid's SDKs for React, React Native, iOS, and Android should regularly update to ensure support for the latest client platforms and Plaid functionality.