# Case Mate Scraper (`lexis-solutions/case-mate-scraper`) Actor

Case-Mate scraper for USA phone case market: extract product prices, stock, reviews and device-compatible cases from Case-Mate.com collections, search pages and product URLs for ecommerce and market research.

- **URL**: https://apify.com/lexis-solutions/case-mate-scraper.md
- **Developed by:** [Lexis Solutions](https://apify.com/lexis-solutions) (community)
- **Categories:** E-commerce, AI, Agents
- **Stats:** 2 total users, 1 monthly users, 100.0% runs succeeded, 0 bookmarks
- **User rating**: No ratings yet

## Pricing

$35.00/month + usage

To use this Actor, you pay a monthly rental fee to the developer. The rent is subtracted from your prepaid usage every month after the free trial period.You also pay for the Apify platform usage, which gets cheaper the higher Apify subscription plan you have.

Learn more: https://docs.apify.com/platform/actors/running/actors-in-store#rental-actors

## What's an Apify Actor?

Actors are a software tools running on the Apify platform, for all kinds of web data extraction and automation use cases.
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.

In JavaScript/TypeScript projects, use official [JavaScript/TypeScript client](https://docs.apify.com/api/client/js.md):

```bash
npm install apify-client
```

In Python projects, use official [Python client library](https://docs.apify.com/api/client/python.md):

```bash
pip install apify-client
```

In shell scripts, use [Apify CLI](https://docs.apify.com/cli/docs.md):

````bash
# MacOS / Linux
curl -fsSL https://apify.com/install-cli.sh | bash
# Windows
irm https://apify.com/install-cli.ps1 | iex
```bash

In AI frameworks, you might use the [Apify MCP server](https://docs.apify.com/platform/integrations/mcp.md).

If your project is in a different language, use 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

## Case-Mate.com Scraper

![banner](https://i.ibb.co/MDCqRBmr/Screenshot-2026-02-26-at-3-18-24-PM.png)

---

This Apify actor extracts product data from **Case-Mate.com**, a leading online store for premium phone cases and tech accessories featuring brands like Case-Mate, Kate Spade, Pelican, and Coach.

Scrape phone case listings by collection, search query, or individual product page — and get structured product details including pricing, availability, SKU, images, ratings, and device compatibility.

---

### 🚀 Key Features

- ✅ Scrape **product collections**
- ✅ Search pages
- ✅ Extract **individual product pages** directly
- ✅ Captures **pricing, SKU, availability**, and compare-at prices
- ✅ Collects **product images**, ratings, reviews, color, and device info
- ✅ Supports **maxItems** limiting per start URL

---

### 👤 Who Is This Actor For?

- 📊 **Market researchers** tracking phone accessory pricing and trends
- 🛒 **E-commerce competitors** benchmarking against Case-Mate products
- 💰 **Resellers** monitoring inventory and availability
- 📈 **Analysts** comparing product catalogs and pricing across brands

---

### Input 📥

The actor accepts the following input parameters:

- **startUrls** (required): One or more Case-Mate URLs. Supports collection pages, search results, and individual product pages.
- **maxItems** (optional): Maximum number of items to scrape per start URL (default: 5).
- **proxyConfiguration** (optional): Proxy settings.

#### Example Input

```json
{
  "startUrls": [
    { "url": "https://case-mate.com/collections/iphone-17-pro-max-phone-cases" },
    { "url": "https://case-mate.com/search?q=magsafe" }
  ],
  "maxItems": 5,
  "proxyConfiguration": {
    "useApifyProxy": false
  }
}
````

#### Supported URL Types

| URL Pattern | Example |
|-------------|---------|
| Collection page | `https://case-mate.com/collections/iphone-17-pro-max-phone-cases` |
| Search results | `https://case-mate.com/search?q=wallet` |
| Product page | `https://case-mate.com/products/jelly-pop-magsafe-iphone-17-pro-max` |

***

### Output 📤

Each scraped product includes the following fields:

```json
{
  "url": "https://case-mate.com/products/jelly-pop-magsafe-iphone-17-pro-max",
  "title": "Jelly Pop Soap Bubble® MagSafe - iPhone 17 Pro Max",
  "brand": "Case-Mate",
  "sku": "CM057286-00",
  "gtin": "840171753073",
  "price": 50,
  "compareAtPrice": null,
  "currency": "USD",
  "availability": "InStock",
  "description": "Say hello to the Jelly Pop Soap Bubble® MagSafe Phone Case for the iPhone 17 Pro Max...",
  "color": "Jelly Pop Iridescent",
  "device": "iPhone 17 Pro Max",
  "images": [
    "https://cdn.shopify.com/s/files/1/0347/8496/8840/files/cmi_iPhone_Alaska_Pro_Max_Soap_Bubble_Jelly_Pop_Magsafe_CM057286-00_PDP2.jpg?v=1757079844",
    "https://cdn.shopify.com/s/files/1/0347/8496/8840/files/cmi_iPhone_Alaska_Pro_Max_Soap_Bubble_Jelly_Pop_Magsafe_CM057286-00_PDP4.jpg?v=1758562855"
  ],
  "breadcrumbs": ["Home", "Jelly Pop Soap Bubble® MagSafe - iPhone 17 Pro Max"],
  "rating": 5,
  "reviewCount": 3
}
```

#### Output Fields

| Field | Description |
|-------|-------------|
| `url` | Canonical product page URL |
| `title` | Product name |
| `brand` | Brand name (Case-Mate, FUEL, Kate Spade, etc.) |
| `sku` | Product SKU identifier |
| `gtin` | Global Trade Item Number (if available) |
| `price` | Current price in numeric format |
| `compareAtPrice` | Original price before discount (if on sale) |
| `currency` | Price currency (USD) |
| `availability` | Stock status (InStock, OutOfStock) |
| `description` | Product description text |
| `color` | Product color or variant name |
| `device` | Compatible device (e.g., iPhone 17 Pro Max) |
| `images` | Array of product image URLs |
| `breadcrumbs` | Navigation breadcrumb trail |
| `rating` | Average customer rating |
| `reviewCount` | Number of customer reviews |

***

### 💡 Use Cases

#### 1. Competitive Price Monitoring

Track Case-Mate phone case prices across different device models and compare with competing brands.

#### 2. Product Catalog Research

Build a structured database of all available phone cases organized by device, brand, and price range.

#### 3. Inventory and Availability Tracking

Monitor which products are in stock and track new product launches across collections.

#### 4. Market Trend Analysis

Analyze pricing trends, popular colors, and product ratings to identify consumer preferences in the phone accessories market.

***

### 🌍 Currency and Proxies

Case-Mate serves different regions, and the currency/pricing may vary based on the visitor's location (IP address).

#### Data Center Proxies (Default)

By default, the actor is configured to use **Data Center proxies**. These are cost-effective and work well for general scraping. However, they usually default to **USD** pricing.

#### Residential Proxies (Recommended for specific currencies)

If you need to scrape pricing in a specific local currency (e.g., EUR, GBP, CAD) or if you encounter sophisticated blocking, we highly recommend using **Residential Proxies**.

- **Why?** Residential proxies provide IPs from specific countries, allowing you to see the site exactly as a local user would.
- **How?** In the `proxyConfiguration`, select "Residential" and choose the target country.

***

### FAQ

- **What is Case-Mate?**

  Case-Mate is a premium phone case and tech accessories brand offering stylish and protective cases for iPhone, Samsung Galaxy, and Google Pixel devices. They also carry brands like Kate Spade, Pelican, and Coach.

- **How many products can I scrape?**

  You can scrape as many products as needed. Use the `maxItems` parameter to control how many items are extracted per start URL.

- **What types of URLs are supported?**

  The scraper supports collection pages (e.g., `/collections/...`), search result pages (e.g., `/search?q=...`), and individual product pages (e.g., `/products/...`).

***

👀 p.s.

Got feedback or need an extension?

Lexis Solutions is a [certified Apify Partner](https://apify.com/partners/find). We can help you with custom solutions or data extraction projects.

Contact us over [Email](mailto:scraping@lexis.solutions) or [LinkedIn](https://www.linkedin.com/company/lexis-solutions)

### Support Our Work 💝

If you're happy with our work and scrapers, you're welcome to leave us a company review [here](https://apify.com/partners/find/lexis-solutions/review) and leave a review for the scrapers you're subscribed to. It will take you less than a minute but it will mean a lot to us!

### Image Credit

Image credit: [case-mate.com](https://www.case-mate.com/)

# Actor input Schema

## `startUrls` (type: `array`):

URLs to scrape. Supports collection pages (e.g. https://case-mate.com/collections/iphone-17-pro-max-phone-cases), search pages (e.g. https://case-mate.com/search?q=magsafe), and product detail pages (e.g. https://case-mate.com/products/jelly-pop-magsafe-iphone-17-pro-max).

## `maxItems` (type: `integer`):

Maximum number of product items to scrape per start URL. Set to 0 for unlimited.

## `proxyConfiguration` (type: `object`):

Proxy configuration for the crawler.

## Actor input object example

```json
{
  "startUrls": [
    {
      "url": "https://case-mate.com/collections/iphone-17-pro-max-phone-cases"
    },
    {
      "url": "https://case-mate.com/search?q=magsafe"
    }
  ],
  "maxItems": 5,
  "proxyConfiguration": {
    "useApifyProxy": true
  }
}
```

# 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 = {
    "startUrls": [
        {
            "url": "https://case-mate.com/collections/iphone-17-pro-max-phone-cases"
        },
        {
            "url": "https://case-mate.com/search?q=magsafe"
        }
    ]
};

// Run the Actor and wait for it to finish
const run = await client.actor("lexis-solutions/case-mate-scraper").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 = { "startUrls": [
        { "url": "https://case-mate.com/collections/iphone-17-pro-max-phone-cases" },
        { "url": "https://case-mate.com/search?q=magsafe" },
    ] }

# Run the Actor and wait for it to finish
run = client.actor("lexis-solutions/case-mate-scraper").call(run_input=run_input)

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

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

```

## CLI example

```bash
echo '{
  "startUrls": [
    {
      "url": "https://case-mate.com/collections/iphone-17-pro-max-phone-cases"
    },
    {
      "url": "https://case-mate.com/search?q=magsafe"
    }
  ]
}' |
apify call lexis-solutions/case-mate-scraper --silent --output-dataset

```

## MCP server setup

```json
{
    "mcpServers": {
        "apify": {
            "command": "npx",
            "args": [
                "mcp-remote",
                "https://mcp.apify.com/?tools=lexis-solutions/case-mate-scraper",
                "--header",
                "Authorization: Bearer <YOUR_API_TOKEN>"
            ]
        }
    }
}

```

## OpenAPI specification

```json
{
    "openapi": "3.0.1",
    "info": {
        "title": "Case Mate Scraper",
        "description": "Case-Mate scraper for USA phone case market: extract product prices, stock, reviews and device-compatible cases from Case-Mate.com collections, search pages and product URLs for ecommerce and market research.",
        "version": "1.0",
        "x-build-id": "w7LyiTDl5KoQZSx6r"
    },
    "servers": [
        {
            "url": "https://api.apify.com/v2"
        }
    ],
    "paths": {
        "/acts/lexis-solutions~case-mate-scraper/run-sync-get-dataset-items": {
            "post": {
                "operationId": "run-sync-get-dataset-items-lexis-solutions-case-mate-scraper",
                "x-openai-isConsequential": false,
                "summary": "Executes an Actor, waits for its completion, and returns Actor's dataset items in response.",
                "tags": [
                    "Run Actor"
                ],
                "requestBody": {
                    "required": true,
                    "content": {
                        "application/json": {
                            "schema": {
                                "$ref": "#/components/schemas/inputSchema"
                            }
                        }
                    }
                },
                "parameters": [
                    {
                        "name": "token",
                        "in": "query",
                        "required": true,
                        "schema": {
                            "type": "string"
                        },
                        "description": "Enter your Apify token here"
                    }
                ],
                "responses": {
                    "200": {
                        "description": "OK"
                    }
                }
            }
        },
        "/acts/lexis-solutions~case-mate-scraper/runs": {
            "post": {
                "operationId": "runs-sync-lexis-solutions-case-mate-scraper",
                "x-openai-isConsequential": false,
                "summary": "Executes an Actor and returns information about the initiated run in response.",
                "tags": [
                    "Run Actor"
                ],
                "requestBody": {
                    "required": true,
                    "content": {
                        "application/json": {
                            "schema": {
                                "$ref": "#/components/schemas/inputSchema"
                            }
                        }
                    }
                },
                "parameters": [
                    {
                        "name": "token",
                        "in": "query",
                        "required": true,
                        "schema": {
                            "type": "string"
                        },
                        "description": "Enter your Apify token here"
                    }
                ],
                "responses": {
                    "200": {
                        "description": "OK",
                        "content": {
                            "application/json": {
                                "schema": {
                                    "$ref": "#/components/schemas/runsResponseSchema"
                                }
                            }
                        }
                    }
                }
            }
        },
        "/acts/lexis-solutions~case-mate-scraper/run-sync": {
            "post": {
                "operationId": "run-sync-lexis-solutions-case-mate-scraper",
                "x-openai-isConsequential": false,
                "summary": "Executes an Actor, waits for completion, and returns the OUTPUT from Key-value store in response.",
                "tags": [
                    "Run Actor"
                ],
                "requestBody": {
                    "required": true,
                    "content": {
                        "application/json": {
                            "schema": {
                                "$ref": "#/components/schemas/inputSchema"
                            }
                        }
                    }
                },
                "parameters": [
                    {
                        "name": "token",
                        "in": "query",
                        "required": true,
                        "schema": {
                            "type": "string"
                        },
                        "description": "Enter your Apify token here"
                    }
                ],
                "responses": {
                    "200": {
                        "description": "OK"
                    }
                }
            }
        }
    },
    "components": {
        "schemas": {
            "inputSchema": {
                "type": "object",
                "required": [
                    "startUrls"
                ],
                "properties": {
                    "startUrls": {
                        "title": "Start URLs",
                        "type": "array",
                        "description": "URLs to scrape. Supports collection pages (e.g. https://case-mate.com/collections/iphone-17-pro-max-phone-cases), search pages (e.g. https://case-mate.com/search?q=magsafe), and product detail pages (e.g. https://case-mate.com/products/jelly-pop-magsafe-iphone-17-pro-max).",
                        "items": {
                            "type": "object",
                            "required": [
                                "url"
                            ],
                            "properties": {
                                "url": {
                                    "type": "string",
                                    "title": "URL of a web page",
                                    "format": "uri"
                                }
                            }
                        }
                    },
                    "maxItems": {
                        "title": "Max Items",
                        "minimum": 0,
                        "type": "integer",
                        "description": "Maximum number of product items to scrape per start URL. Set to 0 for unlimited.",
                        "default": 5
                    },
                    "proxyConfiguration": {
                        "title": "Proxy Configuration",
                        "type": "object",
                        "description": "Proxy configuration for the crawler.",
                        "default": {
                            "useApifyProxy": true
                        }
                    }
                }
            },
            "runsResponseSchema": {
                "type": "object",
                "properties": {
                    "data": {
                        "type": "object",
                        "properties": {
                            "id": {
                                "type": "string"
                            },
                            "actId": {
                                "type": "string"
                            },
                            "userId": {
                                "type": "string"
                            },
                            "startedAt": {
                                "type": "string",
                                "format": "date-time",
                                "example": "2025-01-08T00:00:00.000Z"
                            },
                            "finishedAt": {
                                "type": "string",
                                "format": "date-time",
                                "example": "2025-01-08T00:00:00.000Z"
                            },
                            "status": {
                                "type": "string",
                                "example": "READY"
                            },
                            "meta": {
                                "type": "object",
                                "properties": {
                                    "origin": {
                                        "type": "string",
                                        "example": "API"
                                    },
                                    "userAgent": {
                                        "type": "string"
                                    }
                                }
                            },
                            "stats": {
                                "type": "object",
                                "properties": {
                                    "inputBodyLen": {
                                        "type": "integer",
                                        "example": 2000
                                    },
                                    "rebootCount": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "restartCount": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "resurrectCount": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "computeUnits": {
                                        "type": "integer",
                                        "example": 0
                                    }
                                }
                            },
                            "options": {
                                "type": "object",
                                "properties": {
                                    "build": {
                                        "type": "string",
                                        "example": "latest"
                                    },
                                    "timeoutSecs": {
                                        "type": "integer",
                                        "example": 300
                                    },
                                    "memoryMbytes": {
                                        "type": "integer",
                                        "example": 1024
                                    },
                                    "diskMbytes": {
                                        "type": "integer",
                                        "example": 2048
                                    }
                                }
                            },
                            "buildId": {
                                "type": "string"
                            },
                            "defaultKeyValueStoreId": {
                                "type": "string"
                            },
                            "defaultDatasetId": {
                                "type": "string"
                            },
                            "defaultRequestQueueId": {
                                "type": "string"
                            },
                            "buildNumber": {
                                "type": "string",
                                "example": "1.0.0"
                            },
                            "containerUrl": {
                                "type": "string"
                            },
                            "usage": {
                                "type": "object",
                                "properties": {
                                    "ACTOR_COMPUTE_UNITS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATASET_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATASET_WRITES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "KEY_VALUE_STORE_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "KEY_VALUE_STORE_WRITES": {
                                        "type": "integer",
                                        "example": 1
                                    },
                                    "KEY_VALUE_STORE_LISTS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "REQUEST_QUEUE_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "REQUEST_QUEUE_WRITES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATA_TRANSFER_INTERNAL_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATA_TRANSFER_EXTERNAL_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "PROXY_RESIDENTIAL_TRANSFER_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "PROXY_SERPS": {
                                        "type": "integer",
                                        "example": 0
                                    }
                                }
                            },
                            "usageTotalUsd": {
                                "type": "number",
                                "example": 0.00005
                            },
                            "usageUsd": {
                                "type": "object",
                                "properties": {
                                    "ACTOR_COMPUTE_UNITS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATASET_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATASET_WRITES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "KEY_VALUE_STORE_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "KEY_VALUE_STORE_WRITES": {
                                        "type": "number",
                                        "example": 0.00005
                                    },
                                    "KEY_VALUE_STORE_LISTS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "REQUEST_QUEUE_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "REQUEST_QUEUE_WRITES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATA_TRANSFER_INTERNAL_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATA_TRANSFER_EXTERNAL_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "PROXY_RESIDENTIAL_TRANSFER_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "PROXY_SERPS": {
                                        "type": "integer",
                                        "example": 0
                                    }
                                }
                            }
                        }
                    }
                }
            }
        }
    }
}
```
