# ArchDaily Scraper — Architecture Products Directory (`crawlerbros/archdaily-scraper`) Actor

Scrape Stylepark.com - a leading architecture and design products directory with 45,000+ products from 3,000+ manufacturers. Search by keyword or category, or fetch specific products by slug. Returns product name, manufacturer, category, description, images, specifications, materials, and more.

- **URL**: https://apify.com/crawlerbros/archdaily-scraper.md
- **Developed by:** [Crawler Bros](https://apify.com/crawlerbros) (community)
- **Categories:** Real estate, E-commerce, Lead generation
- **Stats:** 2 total users, 1 monthly users, 100.0% runs succeeded, 4 bookmarks
- **User rating**: 5.00 out of 5 stars

## Pricing

from $3.00 / 1,000 results

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

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

## 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

## ArchDaily Scraper — Architecture Products Directory

Scrape **Stylepark.com** — one of Europe's leading architecture and design product directories, featuring 45,000+ products from 3,000+ manufacturers across all architecture and interior design categories.

> **Data Source:** [Stylepark.com](https://www.stylepark.com) — ArchDaily's own products page requires JavaScript rendering with no accessible public API. Stylepark provides equivalent architecture product data (broader catalog) with full public HTML access.

### What You Can Scrape

- **Product details** — title, slug, full description, specifications
- **Manufacturer info** — name, manufacturer URL
- **Categories** — category name, full breadcrumb path
- **Media** — product images (multiple), thumbnail URL
- **Materials** — detected material types (Concrete, Wood, Steel, Glass, etc.)
- **Specifications** — key-value spec pairs when available
- **Tags** — product keywords and tags
- **URLs** — product page URL, source URL

### Input Parameters

| Parameter | Type | Description |
|-----------|------|-------------|
| `mode` | select | **Required.** `search` — find products by keyword/category. `getBySlug` — fetch specific products by slug. |
| `query` | string | Keyword to search for (e.g., `concrete`, `wood`, `glass facade`) |
| `category` | select | Filter by product category (Furniture, Lighting, Flooring, Facades, etc.) |
| `slugs` | array | Product slugs for `getBySlug` mode (e.g., `rieder/concrete-skin-olgakrippe`) |
| `maxItems` | integer | Maximum records to return (1–10,000, default: 100) |

### Output Fields

Each record contains:

```json
{
  "slug": "rieder/concrete-skin-olgakrippe",
  "title": "concrete skin, Olgakrippe",
  "description": "Fiberglass-reinforced concrete facade panels for Stuttgart day care center...",
  "manufacturer": "Rieder",
  "manufacturerUrl": "https://www.stylepark.com/en/manufacturer/rieder",
  "category": "Concrete facades",
  "categoryBreadcrumb": "Exterior walls / Facades > Facades > Concrete facades",
  "images": [
    "https://www.stylepark.com/assets/Kita-Stuttgart-04.jpg",
    "https://www.stylepark.com/assets/Kita-Stuttgart-08.jpg"
  ],
  "thumbnailUrl": "https://www.stylepark.com/assets/Kita-Stuttgart-04.jpg",
  "materials": ["Concrete", "Fiberglass"],
  "tags": ["concrete", "facade", "exterior walls", "panels"],
  "specifications": {
    "Material": "Fiberglass-reinforced concrete",
    "Thickness": "13 mm",
    "Finish": "Sandstone / Sahara"
  },
  "productUrl": "https://www.stylepark.com/en/rieder/concrete-skin-olgakrippe",
  "sourceUrl": "https://www.stylepark.com/en/rieder/concrete-skin-olgakrippe",
  "recordType": "product",
  "scrapedAt": "2026-05-30T12:00:00+00:00"
}
````

### Example Use Cases

#### Search for concrete products

```json
{
  "mode": "search",
  "query": "concrete",
  "maxItems": 50
}
```

#### Browse furniture category

```json
{
  "mode": "search",
  "query": "",
  "category": "furniture",
  "maxItems": 100
}
```

#### Get specific products by slug

```json
{
  "mode": "getBySlug",
  "slugs": [
    "rieder/concrete-skin-olgakrippe",
    "flos/arco",
    "wilkhahn/occo-high-table-222-81"
  ]
}
```

#### Search lighting products

```json
{
  "mode": "search",
  "query": "LED",
  "category": "lighting",
  "maxItems": 50
}
```

### Categories Available

| Category | Description |
|----------|-------------|
| Furniture | Chairs, tables, sofas, storage |
| Lighting | Indoor, outdoor, architectural lighting |
| Flooring | Hardwood, tiles, carpet, concrete floors |
| Doors | Interior and exterior doors |
| Windows | Window systems and glazing |
| Kitchen | Kitchen systems and equipment |
| Bathroom | Sanitaryware, fixtures, accessories |
| Outdoor | Garden furniture, paving, outdoor structures |
| Facades | Cladding, panels, curtain walls |
| Roofing | Roof systems and materials |
| Insulation | Thermal and acoustic insulation |
| Technology | Smart home, automation, HVAC |

### Frequently Asked Questions

**Q: Why does this scrape Stylepark instead of ArchDaily?**
A: ArchDaily's products section requires JavaScript rendering with no publicly accessible API — it returns empty navigation HTML to server-side requests. Stylepark.com provides equivalent architecture product data with full public HTML access and 45,000+ products.

**Q: How do I find a product's slug?**
A: Visit the product page on Stylepark.com. The slug is the path after `/en/` — e.g., for `https://www.stylepark.com/en/rieder/concrete-skin-olgakrippe`, the slug is `rieder/concrete-skin-olgakrippe`.

**Q: How many products can I scrape?**
A: Up to 10,000 per run. Stylepark has 60 products per page with 100+ pages per search.

**Q: Does this require authentication?**
A: No. Stylepark products are fully publicly accessible without login.

**Q: What material types are detected?**
A: Concrete, Wood, Steel, Glass, Aluminum, Fabric, Plastic, Leather, Stone, Ceramic, Timber, Fiberglass, Composite, Metal, Brass, Copper, and more.

### Technical Notes

- Uses standard HTTP requests (no browser required, no proxy needed)
- Fetches both listing pages and individual product detail pages
- Polite rate limiting with delays between requests
- Automatic retry on server errors (429/5xx)

# Actor input Schema

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

What to fetch. `search` â€” find products by keyword/category. `getBySlug` â€” fetch specific products by slug.

## `query` (type: `string`):

Keyword to search for (mode=search). E.g. `concrete`, `wood`, `steel`, `glass`.

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

Filter by product category.

## `slugs` (type: `array`):

List of Stylepark product slugs to fetch. Find them in the product page URL (e.g., `rieder/concrete-skin-olgakrippe`). (mode=getBySlug)

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

Maximum number of product records to return.

## Actor input object example

```json
{
  "mode": "search",
  "query": "concrete",
  "category": "",
  "maxItems": 100
}
```

# Actor output Schema

## `products` (type: `string`):

Dataset containing all scraped architecture product records.

# 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 = {
    "mode": "search",
    "query": "concrete",
    "category": "",
    "maxItems": 100
};

// Run the Actor and wait for it to finish
const run = await client.actor("crawlerbros/archdaily-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 = {
    "mode": "search",
    "query": "concrete",
    "category": "",
    "maxItems": 100,
}

# Run the Actor and wait for it to finish
run = client.actor("crawlerbros/archdaily-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 '{
  "mode": "search",
  "query": "concrete",
  "category": "",
  "maxItems": 100
}' |
apify call crawlerbros/archdaily-scraper --silent --output-dataset

```

## MCP server setup

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

```

## OpenAPI specification

```json
{
    "openapi": "3.0.1",
    "info": {
        "title": "ArchDaily Scraper — Architecture Products Directory",
        "description": "Scrape Stylepark.com - a leading architecture and design products directory with 45,000+ products from 3,000+ manufacturers. Search by keyword or category, or fetch specific products by slug. Returns product name, manufacturer, category, description, images, specifications, materials, and more.",
        "version": "1.0",
        "x-build-id": "cmTjqJlPjGwJukxbW"
    },
    "servers": [
        {
            "url": "https://api.apify.com/v2"
        }
    ],
    "paths": {
        "/acts/crawlerbros~archdaily-scraper/run-sync-get-dataset-items": {
            "post": {
                "operationId": "run-sync-get-dataset-items-crawlerbros-archdaily-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/crawlerbros~archdaily-scraper/runs": {
            "post": {
                "operationId": "runs-sync-crawlerbros-archdaily-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/crawlerbros~archdaily-scraper/run-sync": {
            "post": {
                "operationId": "run-sync-crawlerbros-archdaily-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": [
                    "mode"
                ],
                "properties": {
                    "mode": {
                        "title": "Mode",
                        "enum": [
                            "search",
                            "getBySlug"
                        ],
                        "type": "string",
                        "description": "What to fetch. `search` â€” find products by keyword/category. `getBySlug` â€” fetch specific products by slug.",
                        "default": "search"
                    },
                    "query": {
                        "title": "Search query",
                        "type": "string",
                        "description": "Keyword to search for (mode=search). E.g. `concrete`, `wood`, `steel`, `glass`."
                    },
                    "category": {
                        "title": "Category filter",
                        "enum": [
                            "",
                            "furniture",
                            "lighting",
                            "flooring",
                            "doors",
                            "windows",
                            "kitchen",
                            "bathroom",
                            "outdoor",
                            "textiles",
                            "walls-ceilings",
                            "facades",
                            "roofing",
                            "insulation",
                            "structural",
                            "hardware",
                            "technology",
                            "acoustics",
                            "access-control",
                            "garden"
                        ],
                        "type": "string",
                        "description": "Filter by product category.",
                        "default": ""
                    },
                    "slugs": {
                        "title": "Product slugs (mode=getBySlug)",
                        "type": "array",
                        "description": "List of Stylepark product slugs to fetch. Find them in the product page URL (e.g., `rieder/concrete-skin-olgakrippe`). (mode=getBySlug)",
                        "items": {
                            "type": "string"
                        }
                    },
                    "maxItems": {
                        "title": "Max items",
                        "minimum": 1,
                        "maximum": 10000,
                        "type": "integer",
                        "description": "Maximum number of product records to return.",
                        "default": 100
                    }
                }
            },
            "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
                                    }
                                }
                            }
                        }
                    }
                }
            }
        }
    }
}
```
