

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”
- Visit the CoinMarketCap website and sign up for an account if you haven’t already.
- Navigate to the API section and request an API key.
- Once you have your API key, note it down securely as you’ll need it to access the API.
- Open Google Sheets and create a new spreadsheet or use an existing one.
- Decide on the structure of your data and set up the columns accordingly. For example, you might have columns for ‘Symbol’, ‘Price’, ‘24h Volume’, etc.
- In your Google Sheets, click on “Extensions” in the top menu and then select “Apps Script”.
- A new tab will open with the Apps Script editor. Here, you’ll write the code to fetch data from CoinMarketCap’s API.
- Replace any existing code with the following script (customize it according to your needs):
const COINMARKETCAP_API_KEY = 'your_api_key_here';
const API_URL = 'https://pro-api.coinmarketcap.com/v1/cryptocurrency/listings/latest';
function importCoinMarketCapData() {
const options = {
'method' : 'GET',
'headers' : {
'X-CMC_PRO_API_KEY': COINMARKETCAP_API_KEY,
}
};
const response = UrlFetchApp.fetch(API_URL, options);
const json = response.getContentText();
const data = JSON.parse(json);
const sheet = SpreadsheetApp.getActiveSpreadsheet().getActiveSheet();
sheet.clearContents(); // Optional: Clear the existing data
const rows = [];
// Assuming you want to get the symbol and price for each cryptocurrency
data.data.forEach(function(currency) {
const symbol = currency.symbol;
const price = currency.quote.USD.price;
rows.push([symbol, price]);
});
// Write data to the first and second column, starting from the second row
sheet.getRange(2, 1, rows.length, 2).setValues(rows);
}
// Optionally, create a custom menu to run the script from the Google Sheets UI
function onOpen() {
const ui = SpreadsheetApp.getUi();
ui.createMenu('CoinMarketCap')
.addItem('Import Data', 'importCoinMarketCapData')
.addToUi();
}
- Replace 'your_api_key_here' with the API key you obtained from CoinMarketCap.
- Customize the API_URL and the data processing part (data.data.forEach...) to fetch the specific information you want.
- Click on the disk icon or “File” > “Save” to save the script.
- Click on the play button (▶️) in the Apps Script editor to run the importCoinMarketCapData function.
- The first time you run the script, you’ll need to authorize the script to access your Google Sheets data. Follow the prompts to grant the necessary permissions.
- If you want to automatically update the data at regular intervals, click on the clock icon (⏲️) in the Apps Script editor to create a trigger.
- Click on “+ Add Trigger” in the bottom right corner.
- Set the function to run (importCoinMarketCapData), the deployment (Head), the event source (Time-driven), and the timing (e.g., every hour).
- Refresh your Google Sheets page.
- You will now see a new menu item called ‘CoinMarketCap’ in the toolbar.
- Click on it and select ‘Import Data’ to manually run the script and import the latest data.
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.
"CoinMarketCap is the world's most-referenced price-tracking website for cryptoassets in the quick growing cryptocurrency space. CoinMarketCap has been the premier price-tracking website for cryptocurrencies. Cryptocurrency market capitalization is a simple, straightforward way of searching out how big a digital currency is and it can assist you make smarter. It is an online resource for cryptocurrency market capitalization, volume and liquidity data. Coinmarketcap is the authority when it comes to tracking cryptocurrency prices in real time. "
CoinMarketCap's API provides access to a wide range of data related to cryptocurrencies and their markets. The following are the categories of data that can be accessed through the API:
1. Cryptocurrency data: This includes information about individual cryptocurrencies such as their name, symbol, market cap, circulating supply, total supply, and maximum supply.
2. Market data: This includes data related to the cryptocurrency markets such as the current price, trading volume, and market capitalization of individual cryptocurrencies.
3. Exchange data: This includes data related to cryptocurrency exchanges such as the trading pairs available, trading volume, and price information.
4. Historical data: This includes historical price and volume data for individual cryptocurrencies and the overall cryptocurrency market.
5. News data: This includes news articles related to cryptocurrencies and the blockchain industry.
6. Social data: This includes data related to social media activity such as the number of mentions and sentiment analysis for individual cryptocurrencies.
7. Blockchain data: This includes data related to the blockchain such as the number of transactions, block height, and mining difficulty.
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: