Scrapes Target store locations and details based on a search keyword (city/zip) and radius. Returns store information including name, address, phone, hours, services, and coordinates. Configurable search radius and results limit.
An Apify actor for scraping Target store locations based on a location keyword search.
The actor accepts the following input parameters:
Parameter | Type | Description | Default |
---|---|---|---|
keyword | String | Location keyword to search for Target stores (e.g. city name, zip code) | "New York" |
within | Integer | Maximum distance in miles to search from the location (1-100) | 50 |
limit | Integer | Maximum number of store results to return (1-100) | 10 |
The actor outputs JSON records with detailed information about each Target store found, including:
You can also run the actor via Apify API. Here's an example using cURL:
1curl -X POST \ 2 https://api.apify.com/v2/acts/your-username~target-store-scraper/runs?token=YOUR_API_TOKEN \ 3 -H 'Content-Type: application/json' \ 4 -d '{ 5 "keyword": "Chicago", 6 "within": 30, 7 "limit": 15 8 }'
python -m venv .venv
.venv\Scripts\activate
source .venv/bin/activate
pip install -r requirements.txt
python -m src
This project is licensed under the Apache License 2.0.
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!