This act takes a crawler execution and inserts it's results into a remote MySQL database.
Apify actor for inserting crawler results into a remote MySQL table.
This actor fetches all results from a specified dataset (or as raw data) and inserts them into a table in a remote MySQL database.
Input is a JSON object with the following properties:
1{ 2 "datasetId": "your_dataset_id", 3 "connection": { 4 "host" : "host_name", 5 "user" : "user_name", 6 "password" : "user_password", 7 "database" : "database_name", // optional 8 "port" : 3306 // optional 9 }, 10 "table": "table_name", 11 // Optionally, you can add raw data instead of datasetId 12 "rows": [ 13 {"column_1": "value_1", "column_2": "value_2"}, 14 {"column_1": "value_3", "column_2": "value_4"} 15 ] 16}
Very often you want to run an image mysql-insert
update after every run of your scraping/automation actor. Webhooks are solution for this. The default datasetId
will be passed automatically to the this actor's run so you don't need to set it up in the payload template (internally the actor transforms the resource.defaultDatasetId
from the webhook into just datasetId
for its own input).
I strongly recommend to create a task from this actor with predefined input that will not change in every run - the only changing part is usually datasetId
. You will not need to fill up the payload template and your webhook URL will then look like:
https://api.apify.com/v2/actor-tasks/<YOUR-TASK-ID>/runs?token=<YOUR_API_TOKEN>
Yes, if you're scraping publicly available data for personal or internal use. Always review Websute's Terms of Service before large-scale use or redistribution.
No. This is a no-code tool — just enter a job title, location, and run the scraper directly from your dashboard or Apify actor page.
It extracts job titles, companies, salaries (if available), descriptions, locations, and post dates. You can export all of it to Excel or JSON.
Yes, you can scrape multiple pages and refine by job title, location, keyword, or more depending on the input settings you use.
You can use the Try Now button on this page to go to the scraper. You’ll be guided to input a search term and get structured results. No setup needed!