How to load data from Plaid to BigQuery
Learn how to use Airbyte to synchronize your Plaid data into BigQuery within minutes.


Building your pipeline or Using Airbyte
Airbyte is the only open source solution empowering data teams to meet all their growing custom business demands in the new AI era.
- Inconsistent and inaccurate data
- Laborious and expensive
- Brittle and inflexible
- Reliable and accurate
- Extensible and scalable for all your needs
- Deployed and governed your way
Start syncing with Airbyte in 3 easy steps within 10 minutes



Take a virtual tour
Demo video of Airbyte Cloud
Demo video of AI Connector Builder
Setup Complexities simplified!
Simple & Easy to use Interface
Airbyte is built to get out of your way. Our clean, modern interface walks you through setup, so you can go from zero to sync in minutes—without deep technical expertise.
Guided Tour: Assisting you in building connections
Whether you’re setting up your first connection or managing complex syncs, Airbyte’s UI and documentation help you move with confidence. No guesswork. Just clarity.
Airbyte AI Assistant that will act as your sidekick in building your data pipelines in Minutes
Airbyte’s built-in assistant helps you choose sources, set destinations, and configure syncs quickly. It’s like having a data engineer on call—without the overhead.
What sets Airbyte Apart
Modern GenAI Workflows
Move Large Volumes, Fast
An Extensible Open-Source Standard
Full Control & Security
Fully Featured & Integrated
Enterprise Support with SLAs
What our users say

Raman Singh
Predictable, straightforward pricing model that simplified budgeting and significantly reduced overall spend

Chase Zieman

“Airbyte helped us accelerate our progress by years, compared to our competitors. We don’t need to worry about connectors and focus on creating value for our users instead of building infrastructure. That’s priceless. The time and energy saved allows us to disrupt and grow faster.”

Rupak Patel
"With Airbyte, we could just push a few buttons, allow API access, and bring all the data into Google BigQuery. By blending all the different marketing data sources, we can gain valuable insights."
How to Sync to Manually
To begin, ensure you have an active Plaid account and create an application in the Plaid dashboard to obtain your API keys (client_id, secret, and public_key). These keys will allow you to authenticate and access Plaid's API endpoints for retrieving financial data.
Use Plaid's API to authenticate and exchange a public token for an access token. You can do this by making a POST request to the `/item/public_token/exchange` endpoint with your client_id, secret, and public token. The access token obtained will be used to access the user's financial data securely.
With the access token, you can now fetch the desired financial data. For example, if you want transactions, make a GET request to the `/transactions/get` endpoint. Specify the necessary parameters, such as the date range, account IDs, and options, to tailor the data extraction according to your needs.
Once you receive the data from Plaid, you need to transform it into a format compatible with BigQuery. This involves structuring the JSON data into a tabular format, ensuring that field names, data types, and nested structures align with your BigQuery table schema. You can use Python or another programming language to script this transformation.
After transforming the data, export it as CSV or JSON files. These formats are natively supported by BigQuery for importing data. Ensure that the files are structured correctly with headers (for CSV) or valid JSON formatting to prevent import errors.
Before importing the data into BigQuery, upload the CSV or JSON files to a Google Cloud Storage (GCS) bucket. Use the `gsutil` command-line tool or GCP's web interface to perform the upload. Make sure your GCS bucket is properly configured with the necessary permissions to allow BigQuery access.
Finally, use the BigQuery console or the `bq` command-line tool to load the data from GCS into your BigQuery dataset. Ensure you specify the correct source format (CSV or JSON) and the destination table. Configure options like schema updates or write preferences (append or overwrite) as needed. Verify the import process and check the BigQuery table for data integrity.
By following these steps, you can successfully transfer data from Plaid to BigQuery without relying on third-party connectors or integrations.