# Boscovs Product Details Scaper (`kinaesthetic_millionaire/boscovs`) Actor

Boscov Scraper is an Apify actor designed to extract structured product data from Boscov’s online store quickly and reliably. It enables you to collect detailed product listings, pricing, availability, and other key e-commerce data for analysis, monitoring, or integration into your own systems.

- **URL**: https://apify.com/kinaesthetic\_millionaire/boscovs.md
- **Developed by:** [Parsedom Inc](https://apify.com/kinaesthetic_millionaire) (community)
- **Categories:** E-commerce, Automation, Other
- **Stats:** 2 total users, 1 monthly users, 100.0% runs succeeded, 0 bookmarks
- **User rating**: No ratings yet

## Pricing

from $3.00 / 1,000 results

This Actor is paid per event. You are not charged for the Apify platform usage, but only a fixed price for specific events.
Since this Actor supports Apify Store discounts, the price gets lower the higher subscription plan you have.

Learn more: https://docs.apify.com/actors/running/actors-in-store.md#pay-per-event

## What's an Apify Actor?

Actors are web data automations that power AI and operations. They run on the Apify platform to scrape websites, process data, connect APIs, and automate workflows.
In Batch mode, an Actor accepts a well-defined JSON input, performs an action which can take anything from a few seconds to a few hours,
and optionally produces a well-defined JSON output, datasets with results, or files in key-value store.
In Standby mode, an Actor provides a web server which can be used as a website, API, or an MCP server.
Actors are written with capital "A".

## How to integrate an Actor?

If asked about integration, you help developers integrate Actors into their projects.
You adapt to their stack and deliver integrations that are safe, well-documented, and production-ready.
The best way to integrate Actors is as follows.

- **AI agents and MCP clients** — the [Apify MCP server](https://docs.apify.com/integrations/mcp.md) at `https://mcp.apify.com` (remote, streamable HTTP, OAuth on first use).
- **Agentic workflows and local Actor development** — [Agent Skills](https://apify.com/.well-known/agent-skills/index.json) with the [Apify CLI](https://docs.apify.com/cli/docs.md): `npm install -g apify-cli`, then `apify login`.
- **JavaScript/TypeScript projects** — the official [JS/TS client](https://docs.apify.com/api/client/js/docs.md): `npm install apify-client`.
- **Python projects** — the official [Python client](https://docs.apify.com/api/client/python/docs.md): `pip install apify-client`.
- **Any other language** — the [REST API](https://docs.apify.com/api/v2.md).

For usage examples, see the [API](#api) section below.

For more details, see Apify documentation as [Markdown index](https://docs.apify.com/llms.txt) and [Markdown full-text](https://docs.apify.com/llms-full.txt).

# README

## Boscov's Product Scraper

Extract structured product data from [Boscov's](https://www.boscovs.com) online store — including pricing, images, ratings, and descriptions — from any search results page.

### Features

- Scrapes product details from any Boscov's search URL or product URL
- Captures sale vs. original (ticketed) pricing
- Extracts product descriptions, images, ratings, and review counts
- Configurable result limit for targeted or bulk collection

### Input

| Field | Type | Required | Description |
|---|---|---|---|
| `inputUrls` | array of strings | ✅ | One or more Boscov's listing or product page URLs |
| `maxResults` | integer | ✅ | Maximum number of products to scrape |

#### Example Input

```json
{
  "inputUrls": [
    "https://www.boscovs.com/search?query=blue+shoes"
  ],
  "maxResults": 5
}
```

### Output

Results are saved to the **Storage** tab in Apify Console and are available for download as JSON, CSV, XML, and more.

#### Output Fields

| Field | Type | Description |
|---|---|---|
| `url` | string | Direct link to the product page |
| `title` | string | Full product name |
| `imageUrl` | string | Product thumbnail image URL |
| `price` | string | Current sale or listed price |
| `ticketedPrice` | string | Original price before any discount |
| `description` | string | Full product description and attributes |
| `rating` | number | Average customer rating (out of 5) |
| `reviewCount` | integer | Number of customer reviews |

#### Example Output

```json
[
  {
    "url": "https://www.boscovs.com/product/mens-skechers-slip-ins-delson-30-roth-fashion-sneakers/812409",
    "title": "Mens Skechers Slip-ins® Delson 3.0 Roth Fashion Sneakers",
    "imageUrl": "//img.boscovs.com/30471-51049/cms/51049/files/94a5caf1-4248-447a-8d62-f91eeef5d2a0?width=85",
    "price": "$69.99",
    "ticketedPrice": "$89.99",
    "description": "Simply step in and go wearing these Mens Skechers Slip-ins®: Delson 3.0 - Roth fashion sneakers...",
    "rating": 4.71,
    "reviewCount": 14
  }
]
```

### Use Cases

- **Price monitoring** — Track sale prices and compare against ticketed prices over time
- **Competitor analysis** — Benchmark product assortment and pricing
- **E-commerce research** — Collect product data for market analysis
- **Inventory tracking** — Monitor product availability and catalog changes

# Actor input Schema

## `inputUrls` (type: `array`):

Array of Boscovs search URLs

## `maxResults` (type: `integer`):

Maximum number of job listings to scrape. Set 0 for all results.

## Actor input object example

```json
{
  "inputUrls": [
    "https://www.boscovs.com/search?query=blue+shoes"
  ],
  "maxResults": 5
}
```

# Actor output Schema

## `overview` (type: `string`):

No description

# API

You can run this Actor programmatically using our API. Below are code examples in JavaScript, Python, and CLI, as well as the OpenAPI specification and MCP server setup.

## JavaScript example

```javascript
import { ApifyClient } from 'apify-client';

// Initialize the ApifyClient with your Apify API token
// Replace the '<YOUR_API_TOKEN>' with your token
const client = new ApifyClient({
    token: '<YOUR_API_TOKEN>',
});

// Prepare Actor input
const input = {
    "inputUrls": [
        "https://www.boscovs.com/search?query=blue+shoes"
    ]
};

// Run the Actor and wait for it to finish
const run = await client.actor("kinaesthetic_millionaire/boscovs").call(input);

// Fetch and print Actor results from the run's dataset (if any)
console.log('Results from dataset');
console.log(`💾 Check your data here: https://console.apify.com/storage/datasets/${run.defaultDatasetId}`);
const { items } = await client.dataset(run.defaultDatasetId).listItems();
items.forEach((item) => {
    console.dir(item);
});

// 📚 Want to learn more 📖? Go to → https://docs.apify.com/api/client/js/docs

```

## Python example

```python
from apify_client import ApifyClient

# Initialize the ApifyClient with your Apify API token
# Replace '<YOUR_API_TOKEN>' with your token.
client = ApifyClient("<YOUR_API_TOKEN>")

# Prepare the Actor input
run_input = { "inputUrls": ["https://www.boscovs.com/search?query=blue+shoes"] }

# Run the Actor and wait for it to finish
run = client.actor("kinaesthetic_millionaire/boscovs").call(run_input=run_input)

# Fetch and print Actor results from the run's dataset (if there are any)
print(f"💾 Check your data here: https://console.apify.com/storage/datasets/{run.default_dataset_id}")
for item in client.dataset(run.default_dataset_id).iterate_items():
    print(item)

# 📚 Want to learn more 📖? Go to → https://docs.apify.com/api/client/python/docs/quick-start

```

## CLI example

```bash
echo '{
  "inputUrls": [
    "https://www.boscovs.com/search?query=blue+shoes"
  ]
}' |
apify call kinaesthetic_millionaire/boscovs --silent --output-dataset

```

## MCP server setup

```json
{
    "mcpServers": {
        "apify": {
            "type": "http",
            "url": "https://mcp.apify.com/?tools=fetch-actor-details,kinaesthetic_millionaire/boscovs"
        }
    }
}

```

The hosted server signs you in with OAuth on first connect, so no API token belongs in this config. Clients without OAuth support can send an `Authorization: Bearer <APIFY_API_TOKEN>` header instead, using a token from API & Integrations in Apify Console (https://console.apify.com/settings/integrations).

## OpenAPI specification

Download the OpenAPI definition: https://api.apify.com/v2/actors/aa13Pji6nKb5k7AKh/builds/IWx6pZLuWCHZo0QZh/openapi.json
