ArchDaily Scraper — Architecture Products Directory avatar

ArchDaily Scraper — Architecture Products Directory

Pricing

from $3.00 / 1,000 results

Go to Apify Store
ArchDaily Scraper — Architecture Products Directory

ArchDaily Scraper — Architecture Products Directory

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.

Pricing

from $3.00 / 1,000 results

Rating

5.0

(4)

Developer

Crawler Bros

Crawler Bros

Maintained by Community

Actor stats

4

Bookmarked

2

Total users

1

Monthly active users

a day ago

Last modified

Share

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

ParameterTypeDescription
modeselectRequired. search — find products by keyword/category. getBySlug — fetch specific products by slug.
querystringKeyword to search for (e.g., concrete, wood, glass facade)
categoryselectFilter by product category (Furniture, Lighting, Flooring, Facades, etc.)
slugsarrayProduct slugs for getBySlug mode (e.g., rieder/concrete-skin-olgakrippe)
maxItemsintegerMaximum records to return (1–10,000, default: 100)

Output Fields

Each record contains:

{
"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

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

Browse furniture category

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

Get specific products by slug

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

Search lighting products

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

Categories Available

CategoryDescription
FurnitureChairs, tables, sofas, storage
LightingIndoor, outdoor, architectural lighting
FlooringHardwood, tiles, carpet, concrete floors
DoorsInterior and exterior doors
WindowsWindow systems and glazing
KitchenKitchen systems and equipment
BathroomSanitaryware, fixtures, accessories
OutdoorGarden furniture, paving, outdoor structures
FacadesCladding, panels, curtain walls
RoofingRoof systems and materials
InsulationThermal and acoustic insulation
TechnologySmart 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)