How to load data from Pendo to MySQL Destination
Learn how to use Airbyte to synchronize your Pendo data into MySQL Destination 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
First, log in to your Pendo account and navigate to the API section. Obtain your API key, which is necessary for authenticating requests to the Pendo API. Make sure to have the appropriate permissions to access the data you intend to export.
Determine the specific data sets you need to export from Pendo. This could include user data, usage statistics, or other analytics. Review the Pendo API documentation to understand the endpoints and data structures available for your required data.
Create a script using a programming language like Python, Node.js, or Ruby to make HTTP requests to the Pendo API. Use the API key obtained in Step 1 to authenticate your requests. For instance, with Python, you might use the `requests` library to send GET requests to the relevant Pendo API endpoints.
Once the data is retrieved from Pendo, parse the JSON response to extract the required data fields. You may need to perform data transformations to match the schema of your MySQL database. This can include reformatting dates, converting data types, and filtering unnecessary fields.
Ensure that your MySQL database is set up with the appropriate tables and schema to receive the data. If necessary, create new tables that match the structure of the data you are importing. Use SQL commands to define the tables and data types.
Extend your script to connect to your MySQL database. Use a library like `mysql-connector-python` for Python or `mysql` for Node.js to establish a connection. Construct SQL `INSERT` or `UPDATE` statements to insert the parsed and transformed data into the appropriate tables in your MySQL database.
To keep your MySQL database updated with the latest data from Pendo, schedule your script to run at regular intervals. Use a task scheduler like `cron` on Unix/Linux systems or Task Scheduler on Windows to automate the execution of your script. Ensure error logging and exception handling are incorporated to handle any issues during data transfer.
By following these steps, you can effectively move data from Pendo to a MySQL destination without relying on third-party connectors or integrations.