

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”
To access Instagram's API, you need to be registered as a Facebook Developer and create an app.
1. Go to https://developers.facebook.com/ and log in with your Facebook account.
2. Click on "My Apps" and then "Create App."
3. Choose the app type that fits your needs (for data fetching, "Consumer" might be appropriate).
4. Fill in the required details and create the app.
Instagram's Basic Display API allows you to read basic profile information and media.
1. In your app dashboard, navigate to "Products" and add "Instagram Basic Display."
2. Fill in the required fields in the settings, such as the "Privacy Policy URL."
3. Add an Instagram Test User in the "Roles" section to test your app.
To access Instagram data, you'll need an access token.
1. Navigate to the "Basic Display" tab and scroll down to "User Token Generator."
2. Authenticate the test user you added earlier to generate a token.
Use the access token to make API calls to Instagram using a scripting language like Python.
1. Install the `requests` library if you haven't already: `pip install requests`.
2. Write a script to fetch data from Instagram:
```python
import requests
access_token = 'YOUR_ACCESS_TOKEN'
user_id = 'YOUR_USER_ID'
url = f'https://graph.instagram.com/{user_id}?fields=id,username,media_count&access_token={access_token}'
response = requests.get(url)
if response.status_code == 200:
data = response.json()
print(data)
else:
print('Failed to fetch data')
```
For Google Sheets, you'll use Google Apps Script to insert data.
1. Go to Google Drive and create a new Google Sheet.
2. Click on "Extensions" > "Apps Script."
3. Rename the project to something meaningful.
In the Apps Script editor, write a script to insert data into the Google Sheet.
```javascript
function insertInstagramData(instagramData) {
var sheet = SpreadsheetApp.getActiveSpreadsheet().getActiveSheet();
// Assuming instagramData is an array of arrays e.g., [[username, media_count]]
var range = sheet.getRange(sheet.getLastRow() + 1, 1, instagramData.length, instagramData[0].length);
range.setValues(instagramData);
}
```
Now you'll need to combine the Instagram data fetching with the Google Sheets scripting.
1. Modify your Python script to send the data to Google Apps Script using Google Sheets API.
2. Alternatively, use Google Apps Script's `UrlFetchApp` to fetch data directly from Instagram and insert it into Google Sheets.
Here's an example using `UrlFetchApp` in Google Apps Script:
```javascript
function fetchInstagramData() {
var accessToken = 'YOUR_ACCESS_TOKEN';
var userId = 'YOUR_USER_ID';
var url = 'https://graph.instagram.com/' + userId + '?fields=id,username,media_count&access_token=' + accessToken;
var response = UrlFetchApp.fetch(url);
var json = JSON.parse(response.getContentText());
// Assuming you want to insert username and media count
var instagramData = [[json.username, json.media_count]];
insertInstagramData(instagramData);
}
// Don't forget to define insertInstagramData function as shown in Step 6
```
You can set a trigger to run the `fetchInstagramData` function periodically.
1. In the Apps Script editor, click on the clock icon (current project's triggers).
2. Click on "+ Add Trigger" and select the `fetchInstagramData` function.
3. Choose the type of trigger you want (e.g., Time-driven) and set the frequency.
Run your scripts and check if the data is being inserted into Google Sheets correctly. Debug any issues that arise.
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.
Instagram is a popular photo/video sharing application that enables users to share images and text captions with other people on social media. The app allows users to apply a variety of custom filter effects to enhance their images. Instagram is a free service and offers the ability to follow others, make user profiles private or public, post to other linked social accounts, and tag people or a location.
Instagram's API provides access to a wide range of data related to user accounts, media, and interactions. Here are the categories of data that can be accessed through Instagram's API:
1. User data: This includes information about a user's profile, such as their username, bio, profile picture, follower count, and following count.
2. Media data: This includes information about the media that a user has posted, such as the caption, location, likes, comments, and tags.
3. Hashtag data: This includes information about hashtags that are used in posts, such as the number of posts that have used a particular hashtag, and the top posts for a given hashtag.
4. Location data: This includes information about the locations that are associated with posts, such as the name of the location, the latitude and longitude, and the number of posts associated with a particular location.
5. Comment data: This includes information about the comments that are posted on media, such as the text of the comment, the username of the commenter, and the time the comment was posted.
6. Like data: This includes information about the likes that are given to media, such as the username of the user who liked the media, and the time the like was given.
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: