1{
2 "url": "https://www.linkedin.com/posts/apifytech_tech-cto-leadership-activity-6911945063627464704-LlVH", // original URL requested
3 "hash": "e74794b9", // the internal hash of the video, never changes between requests
4 "partsUrl": "https://api.apify.com/v2/key-value-stores/SOME_ID/records/e74794b9", // the URL to the Key Value store where the video parts are stored
5 "#error": false // hidden field if there was an error
6}
The video is chunked in parts of ~2MB each and saved to the Key Value store. To be able to download it, you'll need to download all the parts and concatenate them together. Here's a small example that can be used in the browser:
1const{ appendFileSync }=require('node:fs');23asyncfunctionmain(datasetId){4const items =awaitfetch(`https://api.apify.com/v2/datasets/${datasetId}/items?clean=true&format=json`).then((response)=> response.json());56const firstVideo = items[0].partsUrl;// partsUrl contains the location to the Key Value store78// get the parts from the Key value store9const{ parts, length, contentType }=awaitfetch(firstVideo).then((response)=> response.json());1011 console.log({ parts, length, contentType });1213// wait for all parts to be downloaded14for(const url of parts){15// download part using fetch16const downloaded =awaitfetch(url);17// get an arrayBuffer from the chunk18const arrayBuffer =newUint8Array(await downloaded.arrayBuffer());1920 console.log(`Downloaded ${arrayBuffer.byteLength} bytes from ${url}`);2122// write downloaded chunk to file23appendFileSync('video.mp4', arrayBuffer);24}25}2627main('YOUR_DATASET_ID');
Frequently Asked Questions
Is it legal to scrape job listings or public data?
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.
Do I need to code to use this scraper?
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.
What data does it extract?
It extracts job titles, companies, salaries (if available), descriptions, locations, and post dates. You can export all of it to Excel or JSON.
Can I scrape multiple pages or filter by location?
Yes, you can scrape multiple pages and refine by job title, location, keyword, or more depending on the input settings you use.
How do I get started?
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!