OrbTop

Cults3D 3D Model Marketplace Scraper

ECOMMERCEFOR CREATORS

Cults3D 3D Model Marketplace Scraper

Scrape 3D printable models from Cults3D — the leading marketplace for 3D printing designs. Extract model metadata, pricing, creator details, tags, stats (likes, downloads, views), license type, and thumbnail URLs across all categories.

What you get

Each result contains:

Field Description
name Model name
model_id Cults3D design number
creator_username Designer's username
creator_url Link to designer's profile
category Category slug (art, game, home, etc.)
tags Comma-separated tags
price_usd Price in USD (EUR converted at 1.08 rate; 0 for free)
is_free Whether the model is free
license License type (e.g. Creative Commons)
like_count Number of likes
download_count Number of downloads
view_count Number of views
collection_count Number of times saved to collections
published_at Publication date
thumbnail_url Preview image URL
model_url Direct link to the model page

Input

Scrape by category

{
  "categories": ["art", "game", "home"],
  "maxItems": 100
}

Available categories: art, game, home, tool, gadget, jewelry, fashion, architecture, various. Leave categories empty to scrape all categories.

Scrape specific model URLs

{
  "startUrls": [
    "https://cults3d.com/en/3d-model/art/gaze-sculpture",
    "https://cults3d.com/en/3d-model/game/chess-set-modular"
  ]
}

Use startUrls for targeted scraping of known models — faster and more efficient than category crawls for small batches.

Notes

  • Prices are extracted from JSON-LD structured data and converted from EUR to USD.
  • Free models return price_usd: 0 and is_free: true.
  • Stats (likes, downloads, views) are scraped from the detail page and may lag real-time counts by minutes.
  • The scraper respects Cults3D's server load with single-threaded requests and automatic rate-limit backoff.