


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


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


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

"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 OneSignal API documentation at https://documentation.onesignal.com/reference. You'll need to create a REST API key from your OneSignal account. Navigate to the "Settings" tab, then "API & Keys," and generate a new API key with the necessary permissions to read data.
Ensure you have a tool that can make HTTP requests and handle JSON data, such as Python with the `requests` library. If you haven't already, install Python and then run `pip install requests` in your command line to install the library.
Use your preferred programming language to authenticate and fetch data from OneSignal. For example, in Python, use the `requests` library to make a GET request to the OneSignal API endpoint. Include the API key in the header:
```python
import requests
url = "https://onesignal.com/api/v1/notifications"
headers = {
"Authorization": "Basic YOUR_API_KEY"
}
response = requests.get(url, headers=headers)
data = response.json()
```
Replace `YOUR_API_KEY` with your actual API key.
Once you have fetched the data, process it as needed. This may involve filtering out unnecessary information or transforming the data structure to fit your specific requirements. Use Python's list comprehensions and dictionary operations to manipulate the JSON data.
Ensure the processed data is in a proper JSON format. While Python dictionaries can be directly converted to JSON, you might want to structure the data in a specific way or include only certain fields. Use Python's `json` module to handle conversions:
```python
import json
processed_data = # your filtered and structured data
json_data = json.dumps(processed_data, indent=4)
```
Write the JSON data to a file on your local system. Choose a suitable file name and directory, and ensure you have write permissions for that location:
```python
with open('onesignal_data.json', 'w') as json_file:
json_file.write(json_data)
```
This will create a file named `onesignal_data.json` in the current working directory with your OneSignal data.
After saving the data, it's crucial to validate the JSON file to ensure its integrity. Use a JSON validator tool or library to check for any syntax errors. You can use Python's `json` module to load the file and verify:
```python
with open('onesignal_data.json', 'r') as json_file:
try:
data = json.load(json_file)
print("JSON file is valid.")
except json.JSONDecodeError:
print("JSON file is invalid.")
```
This step ensures that your JSON file is correctly formatted and ready for further use or distribution.
By following these steps, you can effectively move data from OneSignal to a JSON file 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.
OneSignal is an easy procedure to increase user engagement. OneSignal is a customer messaging and engagement platform that permits businesses to provide a seamless messaging experience to create a meaningful customer. OneSignal assimilates with leading analytics, CMS, and eCommerce solutions including Segment, Amplitude, HubSpot, Mix panel, Shopify, WordPress, and many more. OneSignal generates engaging customers simply and that is the fastest, most reliable service to send push notifications, in-app messages, SMS, and emails OneSignal is a free push notification service for mobile apps.
OneSignal's API provides access to various types of data related to user engagement and push notifications. The categories of data that can be accessed through OneSignal's API are:
1. User data: This includes information about the users who have subscribed to push notifications, such as their device type, language, location, and subscription status.
2. Notification data: This includes information about the push notifications that have been sent, such as the message, title, delivery time, and click-through rate.
3. Segmentation data: This includes information about the segments that have been created to target specific groups of users, such as their behavior, preferences, and demographics.
4. A/B testing data: This includes information about the different variations of push notifications that have been tested, such as their content, timing, and frequency.
5. Analytics data: This includes information about the performance of push notifications, such as the number of impressions, clicks, conversions, and revenue generated.
Overall, OneSignal's API provides a comprehensive set of data that can be used to optimize push notification campaigns and improve user engagement.
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: