How to load data from Shortio to Snowflake destination
Learn how to use Airbyte to synchronize your Shortio data into Snowflake destination within minutes.


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

Raman Singh
Predictable, straightforward pricing model that simplified budgeting and significantly reduced overall spend

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."
How to Sync to Manually
To begin, log into your Shortio account and navigate to the dashboard where your data resides. Use the export feature to download your data. Typically, this will be in the form of a CSV or JSON file. Ensure you select the necessary data fields and time range for your data export.
Once you have exported the data from Shortio, inspect the file to ensure it is complete and accurate. Open the file in a spreadsheet application or a text editor to verify the format and make any necessary adjustments. This may involve cleaning the data, such as removing duplicates, correcting errors, or reformatting fields for consistency.
Log into your Snowflake account and navigate to the database where you intend to load the data. If you do not have a dedicated database or schema for this data, create one using the Snowflake interface or SQL commands. Use the Snowflake Web Interface or a client tool like SnowSQL for these operations.
Before loading data, create a Snowflake stage to temporarily store your CSV or JSON file. Execute the following SQL command in Snowflake, replacing `` with your chosen stage name:
```sql
CREATE STAGE ;
```
This stage will serve as a temporary holding area for your files.
Use the SnowSQL command-line tool or Snowflake Web Interface to upload your data file to the created stage. For example, using SnowSQL, the command might look like this:
```shell
snowsql -q "PUT file:// @"
```
This command uploads your local data file to the specified stage in Snowflake.
With your data file uploaded, create a table in Snowflake that matches the structure of your data file. Use the following SQL command to define the table, ensuring that the column types correspond to the data types in your file:
```sql
CREATE TABLE (
column1 TYPE,
column2 TYPE,
...
);
```
Finally, load the data from the stage into the Snowflake table using the `COPY INTO` command. This command reads the file from the stage and inserts the data into the table:
```sql
COPY INTO
FROM @/
FILE_FORMAT = (TYPE = 'CSV' OR 'JSON');
```
Replace `` with the name of your data file, and adjust the file format as necessary. After executing this command, your data will be successfully loaded into Snowflake and ready for analysis or further processing.