# Crocs API Scraper (`rl1987/crocs-api-scraper`) Actor

Scrape the Crocs product catalogue (search, category browse, category tree) across 11 markets via the reversed mobile API.

- **URL**: https://apify.com/rl1987/crocs-api-scraper.md
- **Developed by:** [R.L.](https://apify.com/rl1987) (community)
- **Stats:** 2 total users, 1 monthly users, 100.0% runs succeeded, 0 bookmarks
- **User rating**: No ratings yet

## Pricing

from $1.00 / 1,000 product rows

This Actor is paid per event and usage. You are charged both the fixed price for specific events and for Apify platform usage.

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

## Crocs Catalogue Scraper 🛍️ — the Crocs product catalogue (search, category browse, category tree) across 11 markets via the reversed…

**Crocs Catalogue Scraper** — Scrape the Crocs product catalogue (search, category browse, category tree) across 11 markets via the reversed mobile API. It reads Crocs Catalogue's own API directly, so it's **fast, reliable and complete** — no flaky HTML parsing, no headless browser. Export to **JSON, CSV, Excel, or an API**.

***

### ✨ Why use this Crocs Catalogue Scraper?

- 🟢 **No code required** — set your input, click **Start**, download your data.
- ⚡ **Fast & accurate** — reads Crocs Catalogue's own private API and returns structured JSON, not scraped HTML.
- 🧾 **Rich, structured data** — every field below, clean and ready to use.
- 🔁 **Full pagination** — collects results to your `maxItems` cap.
- 💸 **Transparent pay-per-result pricing** — pay only for the rows you get.
- 📤 **Export anywhere** — JSON, CSV, Excel, XML, or pull it live via the Apify API.

***

### 🎯 What can you do with Crocs Catalogue data?

- **Market & competitor research** — analyse Crocs Catalogue products at scale.
- **Price & availability monitoring** — track changes over time.
- **Data science & trend analysis** — build clean datasets.
- **Lead generation & enrichment** — feed Crocs Catalogue data into your own tools.

***

### 📥 What data does the Crocs Catalogue Scraper extract?

Each row includes: `name`, `price`, `currency`, `on_sale`, `color`, `sizes`, `gender`, `market`, `url`, `image`, `master_id`, `object_id`, `brand`. See the full **Data table** below.

***

### 🚀 How to scrape Crocs Catalogue (3 steps)

1. **Set your input** — provide `mode` or `market` (see the table below; defaults work out of the box).
2. **Pick options** — filters, a `proxyConfiguration`, and a `maxItems` cap.
3. **Run & export** — click **Start**, then download the dataset as JSON/CSV/Excel or fetch it via the API.

***

### ⚙️ Input

| Field | Type | Default | Description |
| --- | --- | --- | --- |
| `mode` | enum | `search` | 'Search' finds products by keyword. 'Category' browses a category. 'Category tree (free)' lists the categories you can browse — no per-row charge. — one of `search`, `category`, `categories` |
| `market` | enum | `us` | Which Crocs storefront to read. Sets the catalogue, language, currency and prices. — one of `us`, `ca_en`, `ca_fr`, `gb`, `de`, `fr`, `jp`, `kr`, `sg`, `au`, `nl` |
| `searchTerm` | string | `classic clog` | SEARCH MODE. A keyword, e.g. `classic clog`, `sandals`. |
| `category` | string | – | CATEGORY MODE. Pick a category from the Crocs US taxonomy (ids are shared across markets; the free 'Category tree' mode lists a specific market's own). |
| `maxItems` | integer | `100` | Cap the number of product rows (0 = all). |
| `proxyConfiguration` | object | Apify Proxy | Optional. The catalogue APIs are public; a proxy only helps with rate limits at scale. |

#### Example input

```jsonc
{
  "mode": "search",
  "market": "us",
  "searchTerm": "classic clog",
  "maxItems": 100,
  "proxyConfiguration": {
    "useApifyProxy": true,
    "apifyProxyGroups": [
      "RESIDENTIAL"
    ]
  }
}
```

***

### 📤 Output

Each result is a JSON object like this:

```jsonc
{
  "name": "…",
  "price": 0,
  "currency": "…",
  "on_sale": "…",
  "color": "…",
  "sizes": [
    "…"
  ],
  "gender": "…",
  "market": "…",
  "url": "https://…",
  "image": "https://…",
  "master_id": "…",
  "object_id": "…",
  "brand": "…"
}
```

***

### 🧾 Data table

| Field | Type | Description |
| --- | --- | --- |
| `name` | text | Name |
| `price` | number | Price |
| `currency` | text | Currency |
| `on_sale` | text | On sale |
| `color` | text | Colour |
| `sizes` | array | Sizes |
| `gender` | text | Gender |
| `market` | text | Market |
| `url` | link | URL |
| `image` | image | Image |
| `master_id` | text | Style |
| `object_id` | text | SKU |
| `brand` | text | Brand |

***

### 💰 Pricing — pay per result

This actor uses **pay-per-event** pricing: you pay only for the rows it delivers.

| You scrape | Price |
| --- | --- |
| **Product row** | **$1.00 per 1,000 rows** |

***

### 🔌 Use the Crocs Catalogue Scraper via API

Run it programmatically with the [Apify API](https://docs.apify.com/api/v2):

```bash
curl -X POST "https://api.apify.com/v2/acts/crocs-api-scraper/runs?token=YOUR_TOKEN" \
  -H 'Content-Type: application/json' \
  -d '{
  "mode": "search",
  "market": "us",
  "searchTerm": "classic clog",
  "maxItems": 100,
  "proxyConfiguration": {
    "useApifyProxy": true,
    "apifyProxyGroups": [
      "RESIDENTIAL"
    ]
  }
}'
```

Or with the Apify CLI: `apify call crocs-api-scraper -i input.json -o`.

***

### ❓ FAQ

**Do I need an account or API key for Crocs Catalogue?**

No. The actor talks to Crocs Catalogue's public/mobile API for you — you only need an Apify account.

**Do I need a proxy?**

A proxy is recommended for reliable runs; set `proxyConfiguration` (Residential is safest for geo-restricted or bot-protected sites).

**What export formats are supported?**

JSON, CSV, Excel, XML, JSONL, RSS, or live via the Apify API and dataset endpoints.

**Is scraping this legal?**

You are responsible for how you use the data. Scrape only public product data and comply with Crocs Catalogue's Terms and applicable law (e.g. GDPR/CCPA for personal data).

***

### 🛠️ How it works

The actor impersonates Crocs Catalogue's official app/site and calls its private API the same way the app does, then normalises each response into the flat record above. No browser, no HTML scraping — just clean, structured data.

***

### 📌 Good to know

- Scrape only public product data and respect Crocs Catalogue's Terms of Service and robots policy.
- For personal data, comply with GDPR/CCPA and applicable law — you are the data controller.
- Fields can be `null` when Crocs Catalogue doesn't expose them for a given record.

***

### ⭐ Found this useful?

Give the **Crocs Catalogue Scraper** a star on Apify and check out my other `apify-*-api-scraper` actors.

### Notes on the data

- **Prices and catalogue are per market.** The `market` you pick sets the storefront, language,
  currency and assortment — verify against that same market's site.
- **Per-size availability IS included** (turn on *Include per-size availability*). It comes from the
  SFCC `/product_search?expand=availability,variations` resource, which is not bot-gated, and gives
  an **orderable flag per size and per colour** — e.g. 16 size entries for a Classic Clog.
- **Stock COUNTS are not available.** The `/products/{id}` resource that carries quantities is
  Kasada-protected (`unverified-blocked-by-kasada` in the reversing report). So you get *can you buy
  this size right now*, not *how many are left*. `sizes` (always present) is the catalogue's size
  list; `size_availability` (detail mode) is the orderability.
- **Product URLs are absolute for the US storefront** and fall back to the API's relative path for
  markets whose web host has not been confirmed — no fabricated URLs.
- **Ground-truthed:** a US product's name and price were confirmed against the live crocs.com page
  (`Classic Clog`, $29.99).

### Disclaimer

Unofficial; not affiliated with, endorsed by or sponsored by Crocs. Read-only public catalogue data.

# Actor input Schema

## `mode` (type: `string`):

'Search' finds products by keyword. 'Category' browses a category. 'Category tree (free)' lists the categories you can browse — no per-row charge.

## `market` (type: `string`):

Which Crocs storefront to read. Sets the catalogue, language, currency and prices.

## `searchTerm` (type: `string`):

SEARCH MODE. A keyword, e.g. `classic clog`, `sandals`.

## `category` (type: `string`):

CATEGORY MODE. Pick a category from the Crocs US taxonomy (ids are shared across markets; the free 'Category tree' mode lists a specific market's own).

## `includeDetails` (type: `boolean`):

Fetch each product's per-size and per-colour ORDERABILITY from the product-detail endpoint. Slower (one extra request per product). Note: Crocs exposes orderable flags, not stock counts — the resource carrying counts is bot-protected.

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

Cap the number of product rows (0 = all).

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

Optional. The catalogue APIs are public; a proxy only helps with rate limits at scale.

## Actor input object example

```json
{
  "mode": "search",
  "market": "us",
  "searchTerm": "classic clog",
  "includeDetails": false,
  "maxItems": 100,
  "proxyConfiguration": {
    "useApifyProxy": true
  }
}
```

# Actor output Schema

## `results` (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 = {
    "searchTerm": "classic clog",
    "category": "",
    "proxyConfiguration": {
        "useApifyProxy": true
    }
};

// Run the Actor and wait for it to finish
const run = await client.actor("rl1987/crocs-api-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 = {
    "searchTerm": "classic clog",
    "category": "",
    "proxyConfiguration": { "useApifyProxy": True },
}

# Run the Actor and wait for it to finish
run = client.actor("rl1987/crocs-api-scraper").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 '{
  "searchTerm": "classic clog",
  "category": "",
  "proxyConfiguration": {
    "useApifyProxy": true
  }
}' |
apify call rl1987/crocs-api-scraper --silent --output-dataset

```

## MCP server setup

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

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/8so6tCcKJkMyEUrll/builds/d7stengyhQpz2l08E/openapi.json
