Example of input schema for public scraping actors
(This is an examle readme for fictional store scraper)
Apify Store Scraper is an Apify actor for extracting data about actors from Apify Store. It allows you to search for any category of actors and extract detailed information about each actor found. It is build on top of Apify SDK and you can run it both on Apify platform and locally.
Field | Type | Description | Default value |
---|---|---|---|
startUrls | array | List of Request objects that will be deeply crawled. The URL can be top level like https://apify.com/store , any category/search URL or actor detail URL | [{ "url": "https://apify.com/store" }] |
maxItems | number | Maximum number of actor pages that will be scraped | all found |
extendOutputFunction | string | Function that takes a JQuery handle ($) as argument and returns data that will be merged with the default output. More information in Extend output function | |
proxyConfiguration | object | Proxy settings of the run. If you have access to Apify proxy, leave the default settings. If not, you can set { "useApifyProxy": false" } to disable proxy usage | { "useApifyProxy": true } |
Output is stored in a dataset. Each item is an information about an actor. Example:
1{ 2 "title": "Apify Store Scraper", 3 "url-title": "lukaskrivka/apify-store-scraper" 4 "sourceUrl": "https://github.com/metalwarrior665/apify-store-scraper", 5 "usedTimes": 50000, 6 "description": "Scrape all information about actors in Apify Store!" 7}
Keep in mind that it is much more efficient to run one longer scrape (at least one minute) than more shorter ones because of the startup time.
The average consumption is 1 Compute unit for 1000 actor pages scraped
You can use this function to update the default output of this actor. This function gets a JQuery handle $
as an argument so you can choose what data from the page you want to scrape. The output from this will function will get merged with the default output.
The return value of this function has to be an object!
You can return fields to achive 3 different things:
undefined
1($) => { 2 return { 3 title: $('.fxqkUh p').eq(0).text(), 4 url-title: undefined, 5 modified: $('.stats time').eq(0).text(), 6 } 7}
This example will add a new field modified
, change the title
field and remove url-title
field
1{ 2 "title": "lukaskrivka/apify-store-scraper" 3 "sourceUrl": "https://github.com/metalwarrior665/apify-store-scraper", 4 "usedTimes": 50000, 5 "description": "Scrape all information about actors in Apify Store!", 6 "modified: "3 months ago" 7}
Thank you for trying my actor. I will be very glad for a feedback that you can send to my email lukas@apify.com
. If you find any bug, please create an issue on the Github page.
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!