How to load data from Apify Dataset to Weaviate
Learn how to use Airbyte to synchronize your Apify Dataset data into Weaviate 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
First, familiarize yourself with the structure of the data exported from Apify. Typically, Apify results are available in JSON format. Access your Apify account, navigate to the specific actor run, and download the dataset in JSON format. This will be your source file for migration.
Ensure you have a running Weaviate instance, either locally or on a cloud service. Follow Weaviate's official documentation to install and configure it. You'll need to know the endpoint URL of your Weaviate instance to interact with it using HTTP requests.
Before importing data, define the schema in Weaviate according to the structure of your Apify data. Use Weaviate's schema endpoint to create classes and properties that match the JSON keys from your Apify dataset. Ensure the data types align appropriately (e.g., strings, integers, floats).
Convert your JSON data into a format suitable for Weaviate's import API. This involves mapping JSON keys and values to the schema defined in Weaviate. You might need to write a script in a language like Python to transform the data, ensuring it adheres to Weaviate's expected format.
If your Weaviate instance requires authentication, set up the necessary credentials. This might include an API key or token. Ensure your script or tool used for importing data includes these credentials in the headers of HTTP requests to authenticate each transaction.
Use a programming language such as Python with an HTTP client library (e.g., `requests`) to send your prepared data to Weaviate. For each item in your dataset, make a POST request to the Weaviate `/objects` endpoint. Handle any response errors to ensure that each piece of data is successfully imported.
After the import, verify that the data in Weaviate matches your original Apify dataset. Use Weaviate's query capabilities to retrieve a sample of the imported data and compare it against the source JSON. Check for completeness and accuracy to ensure the migration was successful.
By following these steps, you can effectively move data from Apify to Weaviate without relying on third-party connectors or integrations.