

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

Andre Exner

"For TUI Musement, Airbyte cut development time in half and enabled dynamic customer experiences."

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."
Begin by accessing the Workable API to extract the data you need. Workable provides a RESTful API that you can use to programmatically retrieve candidate data, job listings, or other relevant information. You'll need to authenticate using an API key, which you can obtain from your Workable account settings. Use an HTTP client (like `curl`, Postman, or a Python script using `requests`) to perform GET requests to the API endpoints to fetch the necessary data.
Once you've fetched the data from Workable, you need to parse it. The data will typically be in JSON format. Use a programming language of your choice (such as Python, Node.js, or Java) to parse this JSON data. Make sure you structure it in a way that's suitable for the Firestore document format, which involves key-value pairs.
If you haven't already, create a Google Cloud Platform account and set up a new project. Enable the Firestore API for your project. You'll also need to configure billing, as Firestore usage beyond the free tier may incur costs. This setup will allow you to utilize Firestore to store your data.
To interact with Firestore from your application, install the Firebase Admin SDK. This will allow you to authenticate and perform operations on your Firestore database. For example, in a Node.js environment, you can install it using npm:
```bash
npm install firebase-admin
```
Similarly, you can find installation instructions for other languages in the Firebase Admin SDK documentation.
You need to authenticate to your Firestore database using service account credentials. Download the service account JSON file from your Google Cloud Console under the IAM & Admin section. In your application, initialize Firestore with these credentials. Here is a sample setup in Node.js:
```javascript
const admin = require('firebase-admin');
const serviceAccount = require('path/to/serviceAccountKey.json');
admin.initializeApp({
credential: admin.credential.cert(serviceAccount)
});
const db = admin.firestore();
```
Before uploading the data to Firestore, ensure it is transformed to fit Firestore's format. Consider how you want to structure your Firestore documents and collections. This may involve organizing your data into multiple collections or documents and setting appropriate keys.
Finally, write a script to upload your parsed and transformed data to Firestore. Use the Firestore SDK methods to create new documents and collections. Here's a basic example in Node.js:
```javascript
const data = /* your parsed and structured data from Workable */;
data.forEach(async (item) => {
const docRef = db.collection('your-collection-name').doc(item.id);
await docRef.set(item);
});
```
Ensure each document is correctly inserted with the right structure and data integrity.
By following these steps, you can efficiently transfer data from Workable to Google Firestore without relying on third-party connectors or integrations.
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.
Workable is a cloud-based recruitment software that helps businesses streamline their hiring process. It offers a range of tools to help companies manage job postings, applicant tracking, candidate communication, and interview scheduling. Workable also provides features such as resume parsing, candidate scoring, and background checks to help businesses make informed hiring decisions. The platform integrates with popular job boards and social media sites, making it easy for companies to reach a wider pool of candidates. Workable is designed to be user-friendly and customizable, allowing businesses to tailor the software to their specific needs.
Workable's API provides access to a wide range of data related to recruitment and hiring processes. The following are the categories of data that can be accessed through Workable's API:
1. Candidates: Information about candidates who have applied for a job, including their name, contact details, resume, cover letter, and application status.
2. Jobs: Details about the job openings, including the job title, description, location, salary, and hiring manager.
3. Hiring pipeline: Information about the hiring process, including the stages of the pipeline, the number of candidates in each stage, and the time spent in each stage.
4. Interviews: Details about the interviews conducted with candidates, including the date, time, location, interviewer, and feedback.
5. Reports: Analytics and insights related to recruitment and hiring processes, including the number of applications, the time to hire, and the cost per hire.
6. Integrations: Information about the third-party tools and services integrated with Workable, including the ATS, HRIS, and job boards.
Overall, Workable's API provides a comprehensive set of data that can help organizations streamline their recruitment and hiring processes and make data-driven decisions.
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: