TeePublic Creator Store Scraper — Products, Prices & Profile
Pricing
Pay per usage
TeePublic Creator Store Scraper — Products, Prices & Profile
Extract complete creator storefronts from TeePublic — full profile, all designs (t-shirts, hoodies, stickers, mugs, and more), prices, tags, and product types. No login required. Note: Spring/Teespring shut down in 2023; TeePublic is the active print-on-demand platform for independent creators.
Pricing
Pay per usage
Rating
0.0
(0)
Developer
Venkatesh Sekar
Actor stats
0
Bookmarked
2
Total users
1
Monthly active users
2 days ago
Last modified
Categories
Share
TeePublic Creator Store Scraper
Note on Spring/Teespring: Spring (formerly Teespring) shut down in 2023. This actor targets TeePublic (teepublic.com), the active print-on-demand marketplace for independent creators. The directory is named
spring-creator-merch-scraperfor continuity.
Scrapes complete creator storefronts from TeePublic — profile metadata and all designs (t-shirts, hoodies, stickers, mugs, phone cases, and more). No login required.
Input
| Field | Type | Default | Description |
|---|---|---|---|
creators | string[] | — | TeePublic usernames or full store URLs |
includeProducts | bool | true | Include the full design list |
maxPages | int | 0 | Max pages per creator (0 = unlimited) |
maxConcurrency | int | 3 | Parallel creator fetches |
proxyConfiguration | object | Apify default | Proxy settings |
Example input:
{"creators": ["nathanwpyle", "https://www.teepublic.com/user/adamtots"],"includeProducts": true,"maxPages": 0,"maxConcurrency": 3}
Output
One dataset record per creator:
{"url": "https://www.teepublic.com/user/nathanwpyle","username": "nathanwpyle","creator_name": "Nathan W. Pyle","followers": 0,"following": 1,"total_designs_stat": 13,"design_count": 13,"pages_fetched": 1,"products": [{"design_id": "90657393","slug": "mmama-floral-shirt-cute-mom-gift-sweatshirt-vintag","title": "MMama Floral Shirt, Cute Mom Gift Sweatshirt...","product_type": "t-shirt","store_id": "4394049","image_url": "https://images.teepublic.com/derived/production/designs/...","url": "https://www.teepublic.com/t-shirt/90657393-mmama-floral-shirt-...","sale_price": 16.0,"regular_price": 24.0,"tags": null}]}
How it works
TeePublic renders store pages server-side. The actor:
- Fetches
/user/<username>?page=Nwith a browser-like User-Agent - Parses HTML with selectolax (fast CSS selector engine)
- Extracts product links matching
/PRODUCT_TYPE/DESIGN_ID-SLUG - Paginates until no further pages are detected
- Merges all pages into one creator record
Designs are deduplicated across pages by design_id.