How to load data from Amplitude to BigQuery
Learn how to use Airbyte to synchronize your Amplitude 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.
Building in-house pipelines
- Inconsistent and inaccurate data
- Laborious and expensive
- Brittle and inflexible
After Airbyte
- 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
Streamline AI workflows with Airbyte: load unstructured data into vector stores like Pinecone, Weaviate, and Milvus. Supports RAG transformations with LangChain chunking and embeddings from OpenAI, Cohere, etc., all in one operation.
Move Large Volumes, Fast
Quickly get up and running with a 5-minute setup that enables both incremental and full refreshes for databases of any size, seamlessly scaling to handle large data volumes. Our optimized architecture overcomes performance bottlenecks, ensuring efficient data synchronization even as your datasets grow from gigabytes to petabytes.
An Extensible Open-Source Standard
More than 1,000 developers contribute to Airbyte’s connectors, different interfaces (UI, API, Terraform Provider, Python Library), and integrations with the rest of the stack. Airbyte’s AI Connector Builder lets you edit or add new connectors in minutes.
Full Control & Security
Airbyte secures your data with cloud-hosted, self-hosted or hybrid deployment options. Single Sign-On (SSO) and Role-Based Access Control (RBAC) ensure only authorized users have access with the right permissions. Airbyte acts as a HIPAA conduit and supports compliance with CCPA, GDPR, and SOC2.
Fully Featured & Integrated
Airbyte automates schema evolution for seamless data flow, and utilizes efficient Change Data Capture (CDC) for real-time updates. Select only the columns you need, and leverage our dbt integration for powerful data transformations.
Enterprise Support with SLAs
Airbyte Self-Managed Enterprise comes with dedicated support and guaranteed service level agreements (SLAs), ensuring that your data movement infrastructure remains reliable and performant, and expert assistance is available when needed.
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
Step 1: Set up Google Cloud Project and BigQuery
1. Create a Google Cloud Project:
- Go to the Google Cloud Console (https://console.cloud.google.com/).
- Click on the project dropdown and then on "New Project".
- Enter a project name, select a billing account, and click "Create".
2. Enable BigQuery API:
- In the Cloud Console, go to the API Library.
- Search for "BigQuery API" and enable it for your project.
3. Set up a BigQuery Dataset:
- Go to the BigQuery console.
- Click on your project name, then click "Create Dataset".
- Enter a dataset ID and choose default data expiration as needed, then click "Create dataset".
Step 2: Obtain Amplitude API Key and Secret
1. Log in to your Amplitude dashboard.
2. Go to Settings > Projects, and select the project you want to export data from.
3. Under the General tab, you'll find your API Key and Secret Key. Take note of these as you'll need them for API requests.
Step 3: Step 3: Extract Data from Amplitude
1. Identify the data you want to export:
Determine the events or properties you need from Amplitude.
2. Use Amplitude's Export API:
- Write a script (e.g., in Python) that uses the `requests` library to make API calls to Amplitude's Export API.
- The API endpoint is typically `https://amplitude.com/api/2/export`.
- You'll need to pass the API Key and Secret Key for authentication.
- Specify the start and end times for the data export.
- The response will be a zipped file containing the data in JSON format.
Step 4: Format the Data
1. Unzip the exported data:
Use a tool or script to unzip the downloaded file.
2. Transform the JSON data:
Write a script to parse the JSON data and transform it into a structured format suitable for BigQuery (e.g., CSV, Avro, or Parquet).
3. Ensure data types match:
Make sure that the data types in your transformed data match the schema you intend to use in BigQuery.
Step 5: Upload Data to BigQuery
1. Create a BigQuery table:
- Define the schema that corresponds to the data you've formatted.
- Use the BigQuery web UI, the `bq` command-line tool, or the BigQuery API to create a new table with this schema.
2. Upload the data:
- You can upload the data files to Google Cloud Storage and then use the BigQuery Data Transfer Service or `bq` command-line tool to load the data into BigQuery.
- Alternatively, you can use the BigQuery API to stream the data directly into BigQuery.
Step 6: Verify Data Integrity
1. Check the data:
After the data is uploaded, run some queries to ensure that the data has been loaded correctly and completely.
2. Validate data types and counts:
Confirm that the data types are correct and the counts of rows match what you exported from Amplitude.
Step 7: Automate the Process
1. Create a script or application:
Combine all the steps into a script or an application that automates the extraction, transformation, and loading (ETL) process.
2. Schedule the ETL process:
Use a scheduler like `cron` on a Unix-like system or the Google Cloud Scheduler to run your ETL process at regular intervals.
Step 8: Monitor and Maintain
1. Set up logging and monitoring:
Implement logging in your ETL script and monitor the ETL process to quickly identify and fix any issues.
2. Regularly check for API changes:
Keep an eye on any updates to the Amplitude API or BigQuery API that might require changes to your ETL script.