API - https://plaid.com/
- Clone to repo
pip install requirements.txtnpm install- Create an account with Plaid and get an API key - https://dashboard.plaid.com/signin
- Create a
config.pyfile in the root directory with the following:
PLAID_CLIENT_ID = YOUR_CLIENT_ID
PLAID_SECRET = YOUR_SECRET_KEY
PLAID_PUBLIC_KEY = YOUR_PUBLIC_KEY
PLAID_ENV = 'sandbox'
PLAID_PRODUCTS = 'transactions'
PLAID_COUNTRY_CODES = 'US,CA,GB,FR,ES' - Run
npm startandpython server.pyand go tolocalhost:3000
- Using the Plaid API to access a user's transactions
- Sending requests to a Flask backend from a React frontend
- Flask CORS




