

.webp)
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 logging into your OneSignal account. Navigate to the dashboard where you can manage your apps. Choose the app from which you want to export the data.
Go to the "Settings" section of your selected app and find the "API & Keys" tab. Generate or retrieve your REST API key. This key is necessary for authenticating requests to OneSignal's API.
Visit OneSignal’s API documentation at https://documentation.onesignal.com/docs/using-our-api. Familiarize yourself with the endpoints that are relevant to the data you wish to export, such as those for fetching notifications, players, or outcomes.
Using a tool like cURL or Postman, construct a GET request to the relevant OneSignal API endpoint. Include the REST API key in the request header for authentication. For example, to fetch player data, you could use:
```
curl --include \
--request GET \
--header "Authorization: Basic YOUR_REST_API_KEY" \
"https://onesignal.com/api/v1/players?app_id=YOUR_APP_ID&limit=300"
```
Adjust query parameters as needed to refine the data you’re retrieving.
Execute the API request from your terminal or through a script. Capture the JSON response, which contains the data you need. Save this JSON data to a local file for the next step. Make sure to check the response for pagination if your data set exceeds the API’s limit per request.
Use a programming language like Python to convert the JSON data into a CSV format. Here is a simple example using Python:
```python
import json
import csv
# Load JSON data
with open('data.json') as json_file:
data = json.load(json_file)
# Specify the data fields you want to include
fields = ['id', 'identifier', 'session_count'] # Adjust fields as necessary
# Write to CSV
with open('data.csv', mode='w', newline='') as csv_file:
writer = csv.DictWriter(csv_file, fieldnames=fields)
writer.writeheader()
for item in data['players']: # Adjust based on your JSON structure
writer.writerow({field: item.get(field) for field in fields})
```
Open the generated CSV file using a spreadsheet application or a text editor to ensure that the data has been correctly transferred and formatted. Verify that all necessary fields are present and that the data integrity is maintained.
This guide provides a methodical approach to exporting data from OneSignal to a local CSV file using available tools and programming techniques, without relying on external 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: