Target Store Scraper

Target Store Scraper

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.

ECOMMERCEApify

An Apify actor for scraping Target store locations based on a location keyword search.

Features

  • Search for Target stores by location keyword (city name, zip code, etc.)
  • Specify search radius in miles
  • Limit the number of results returned
  • Detailed store information including address, phone, hours, and more

Input Parameters

The actor accepts the following input parameters:

ParameterTypeDescriptionDefault
keywordStringLocation keyword to search for Target stores (e.g. city name, zip code)"New York"
withinIntegerMaximum distance in miles to search from the location (1-100)50
limitIntegerMaximum number of store results to return (1-100)10

Output

The actor outputs JSON records with detailed information about each Target store found, including:

  • Store ID and name
  • Address (street, city, state, zip)
  • Phone number
  • Store hours
  • Store type and features
  • Geographic coordinates
  • Distance from search location

Usage

Apify Console

  1. Go to the Target Store Scraper page on Apify Console
  2. Enter the input parameters
  3. Click "Start"

API

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  }'

Local Development

Prerequisites

  • Python 3.9+
  • pip

Installation

  1. Clone this repository
  2. Create a virtual environment: python -m venv .venv
  3. Activate the virtual environment:
    • Windows: .venv\Scripts\activate
    • macOS/Linux: source .venv/bin/activate
  4. Install dependencies: pip install -r requirements.txt

Running Locally

python -m src

License

This project is licensed under the Apache License 2.0.

Example Input

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!