

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


"The intake layer of Datadog’s self-serve analytics platform is largely built on Airbyte.Airbyte’s ease of use and extensibility allowed any team in the company to push their data into the platform - without assistance from the data team!"


“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.”


“We chose Airbyte for its ease of use, its pricing scalability and its absence of vendor lock-in. Having a lean team makes them our top criteria. The value of being able to scale and execute at a high level by maximizing resources is immense”
- Sign up for a Plaid account at https://plaid.com.
- Create a new app in your Plaid dashboard and get your Client ID and Secret.
- Determine the Plaid products (e.g., Transactions, Identity, Balance) that you need access to and ensure your Plaid app has permissions for those products.
- Use the Plaid Link to authenticate with the financial institutions and get an access token.
- Go to the Google Developers Console at https://console.developers.google.com.
- Create a new project or select an existing one.
- Enable the Google Sheets API for your project.
- Create credentials (OAuth client ID) for your project.
- Download the JSON file with your credentials.
- Install the Google client library in your development environment by running:
pip install --upgrade google-api-python-client google-auth-httplib2 google-auth-oauthlib
- Prepare the authentication flow to obtain the necessary tokens to access the Google Sheets API.
- Use the Plaid client library for your programming language or send HTTP requests to Plaid’s API endpoints.
- Authenticate your requests with your Client ID, Secret, and the access token obtained from the Plaid Link process.
- Make a request to the relevant Plaid API endpoint to retrieve the data you want (e.g., transactions, accounts).
- Parse the JSON response to extract the data.
- Create a new Google Sheet or select an existing one where you want to import the data.
- Note the spreadsheet ID and the range (e.g., ‘Sheet1!A1’) where you want to insert the data.
- Use the Google Sheets API client library to authenticate using the OAuth credentials you obtained earlier.
- Create a service object for the Sheets API.
- Prepare the data in the format required by the Google Sheets API (usually a list of lists for cell values).
- Use the batchUpdate or values().update method to insert the data into the specified range of the Google Sheet.
- Write a script that automates the fetching of data from Plaid and the insertion into Google Sheets.
- Schedule the script to run at regular intervals using a task scheduler like cron (for Linux/Mac) or Task Scheduler (for Windows).
Example Code Snippet:
Below is a simplified Python code snippet demonstrating the interaction with both APIs:
import plaid
from plaid.api import plaid_api
import google.auth
from googleapiclient.discovery import build
from google.oauth2.credentials import Credentials
# Plaid setup
PLAID_CLIENT_ID = 'your_plaid_client_id'
PLAID_SECRET = 'your_plaid_secret'
PLAID_ENV = plaid.Environment.Sandbox # or use Production/Development
ACCESS_TOKEN = 'your_plaid_access_token'
# Google Sheets setup
SHEET_ID = 'your_google_sheet_id'
RANGE = 'Sheet1!A1'
SCOPES = ['https://www.googleapis.com/auth/spreadsheets']
# Fetch data from Plaid
configuration = plaid.Configuration(
host=PLAID_ENV,
api_key={
'clientId': PLAID_CLIENT_ID,
'secret': PLAID_SECRET,
}
)
client = plaid_api.PlaidApi(plaid.ApiClient(configuration))
response = client.transactions_get(access_token=ACCESS_TOKEN, start_date='2020-01-01', end_date='2020-02-01')
transactions = response['transactions']
# Prepare data for Google Sheets
values = [[t['name'], t['amount'], t['date']] for t in transactions]
# Authenticate with Google
creds = None
creds = Credentials.from_authorized_user_file('path_to_credentials.json', SCOPES)
service = build('sheets', 'v4', credentials=creds)
# Insert data into Google Sheets
body = {
'values': values
}
result = service.spreadsheets().values().update(
spreadsheetId=SHEET_ID,
range=RANGE,
valueInputOption='RAW',
body=body).execute()
Remember to replace placeholders (like 'your_plaid_client_id', 'your_google_sheet_id', etc.) with your actual credentials and identifiers. Also, handle exceptions and errors appropriately in your actual implementation.
FAQs
What is ETL?
ETL, an acronym for Extract, Transform, Load, is a vital data integration process. It involves extracting data from diverse sources, transforming it into a usable format, and loading it into a database, data warehouse or data lake. This process enables meaningful data analysis, enhancing business intelligence.
Plaid is a technology platform that makes it possible for companies to develop digitally-enabled financial systems. It enables developers to build financial services and applications safely and easily for financial institutions of any size. Plaid powers many financial apps including Venmo, Betterment, Chime, and Dave, encrypting your data before sharing it with your chosen app to keep your connection secure.
Plaid's API provides access to a wide range of financial data, including:
1. Account Information: Plaid's API allows access to account information such as account balances, transaction history, and account holder details.
2. Transactions: Plaid's API provides access to transaction data, including transaction amounts, dates, and descriptions.
3. Investments: Plaid's API allows access to investment account data, including holdings, transactions, and performance metrics.
4. Loans: Plaid's API provides access to loan account data, including loan balances, payment history, and interest rates.
5. Identity Verification: Plaid's API allows for identity verification through bank account information, including name, address, and account ownership.
6. Authentication: Plaid's API provides authentication services to verify account ownership and prevent fraud.
7. Payment Initiation: Plaid's API allows for payment initiation through bank accounts, enabling users to make payments directly from their accounts.
Overall, Plaid's API provides a comprehensive suite of financial data services that can be used by developers to build innovative financial applications and services.
What is ELT?
ELT, standing for Extract, Load, Transform, is a modern take on the traditional ETL data integration process. In ELT, data is first extracted from various sources, loaded directly into a data warehouse, and then transformed. This approach enhances data processing speed, analytical flexibility and autonomy.
Difference between ETL and ELT?
ETL and ELT are critical data integration strategies with key differences. ETL (Extract, Transform, Load) transforms data before loading, ideal for structured data. In contrast, ELT (Extract, Load, Transform) loads data before transformation, perfect for processing large, diverse data sets in modern data warehouses. ELT is becoming the new standard as it offers a lot more flexibility and autonomy to data analysts.
What should you do next?
Hope you enjoyed the reading. Here are the 3 ways we can help you in your data journey: