

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
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


"The intake layer of Datadog’s self-serve analytics platform is largely built on Airbyte.Airbyte’s ease of use and extensibility allowed any team in the company to push their data into the platform - without assistance from the data team!"


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


“We chose Airbyte for its ease of use, its pricing scalability and its absence of vendor lock-in. Having a lean team makes them our top criteria. The value of being able to scale and execute at a high level by maximizing resources is immense”
- Go to the Google Developers Console (https://console.developers.google.com/).
- Create a new project or select an existing one.
- Enable the Google Sheets API for your project.
- Create credentials (OAuth client ID) for your project.
- Download the JSON file containing your credentials.
- Install the Google client library for your programming language (e.g., Python, Node.js).
- Set up authorization using the credentials file to get the access token.
- Log in to your Zendesk account.
- Go to Admin > Channels > API.
- Enable Token Access if it’s not already enabled.
- Generate a new API token and make a note of it.
- Note your Zendesk subdomain (e.g., yoursubdomain.zendesk.com).
- Choose a programming language and set up an environment to run your code.
- Use the Zendesk API endpoint for the data you want to extract (e.g., tickets, users, etc.).
- Authenticate your API request with the generated API token.
- Make an HTTP GET request to the appropriate Zendesk API endpoint to retrieve the data.
- Handle pagination if the data set is large.
- Parse the JSON response and extract the data you need.
- Format the extracted data into a structure compatible with Google Sheets (e.g., an array of arrays for rows and columns).
- Ensure the data types are supported by Google Sheets (e.g., strings, numbers, booleans).
- Use the Google Sheets API to access your target spreadsheet.
- Authenticate with the Google Sheets API using the OAuth token.
- Use the appropriate method (e.g., spreadsheets.values.append) to insert data into the spreadsheet.
- Choose the range where you want to insert data and specify the value input option.
- Execute the API request to append the data to the spreadsheet.
- Handle any errors or responses.
- Create a script or application that automates steps 3 to 5.
- Schedule the script to run at regular intervals if you need to sync data periodically.
Example Code Snippet (Python):
Below is a simplified Python example that demonstrates fetching data from Zendesk and writing it to Google Sheets:
from google.oauth2.service_account import Credentials
from googleapiclient.discovery import build
import requests
# Set up Google Sheets credentials and service
SCOPES = ['https://www.googleapis.com/auth/spreadsheets']
SERVICE_ACCOUNT_FILE = 'path/to/your/credentials.json'
credentials = Credentials.from_service_account_file(
SERVICE_ACCOUNT_FILE, scopes=SCOPES)
service = build('sheets', 'v4', credentials=credentials)
# Your Google Sheet ID
spreadsheet_id = 'your_spreadsheet_id'
range_name = 'Sheet1!A1' # Change as needed
# Set up Zendesk API credentials
zendesk_subdomain = 'yoursubdomain'
zendesk_email = 'your_email'
zendesk_token = 'your_api_token'
# Fetch data from Zendesk
zendesk_url = f'https://{zendesk_subdomain}.zendesk.com/api/v2/tickets.json'
auth = (zendesk_email + '/token', zendesk_token)
response = requests.get(zendesk_url, auth=auth)
tickets = response.json().get('tickets', [])
# Prepare data for Google Sheets
values = [[ticket['id'], ticket['subject']] for ticket in tickets] # Example data structure
# Insert data into Google Sheets
body = {
'values': values
}
result = service.spreadsheets().values().append(
spreadsheetId=spreadsheet_id, range=range_name,
valueInputOption='RAW', body=body).execute()
print(f"{result.get('updates').get('updatedCells')} cells appended.")
Remember to replace 'path/to/your/credentials.json', 'your_spreadsheet_id', 'yoursubdomain', 'your_email', and 'your_api_token' with your actual credentials and IDs.
Notes:
- The above code is a simplified example; error handling and other best practices should be implemented.
- The Google Sheets and Zendesk APIs have rate limits and quotas. Make sure to handle these appropriately in your code.
- If you’re running this as a script on a server, make sure to secure your credentials and use environment variables where possible.
- This guide assumes a developer-level understanding of APIs, HTTP requests, and programming concepts.
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.
Zendesk Support is a software designed to help businesses manage customer interactions. It provides businesses with the means to personalize support across any channel with the ability to prioritize, track and solve customer issues. Also built for iOS, Zendesk Support can be accessed on iPhone and iPad, adding a new dimension to the ability to add the necessary people to a customer conversation at any time.
Zendesk Support's API provides access to a wide range of data related to customer support and service management. The following are the categories of data that can be accessed through the API:
1. Tickets: Information related to customer inquiries, including ticket ID, subject, description, status, priority, and tags.
2. Users: Data related to customer profiles, including name, email, phone number, and organization.
3. Organizations: Information about customer organizations, including name, domain, and tags.
4. Groups: Data related to support groups, including name, description, and membership.
5. Views: Information about support views, including name, description, and filters.
6. Macros: Data related to macros, including name, description, and actions.
7. Triggers: Information about triggers, including name, description, and conditions.
8. Custom Fields: Data related to custom fields, including name, type, and options.
9. Attachments: Information about attachments, including file name, size, and content.
10. Comments: Data related to ticket comments, including author, body, and timestamp. Overall, Zendesk Support's API provides access to a comprehensive set of data that can be used to manage and optimize customer support and service operations.
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: