TeePublic Creator Store Scraper — Products, Prices & Profile avatar

TeePublic Creator Store Scraper — Products, Prices & Profile

Pricing

Pay per usage

Go to Apify Store
TeePublic Creator Store Scraper — Products, Prices & Profile

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

Venkatesh Sekar

Maintained by Community

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-scraper for 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

FieldTypeDefaultDescription
creatorsstring[]TeePublic usernames or full store URLs
includeProductsbooltrueInclude the full design list
maxPagesint0Max pages per creator (0 = unlimited)
maxConcurrencyint3Parallel creator fetches
proxyConfigurationobjectApify defaultProxy 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:

  1. Fetches /user/<username>?page=N with a browser-like User-Agent
  2. Parses HTML with selectolax (fast CSS selector engine)
  3. Extracts product links matching /PRODUCT_TYPE/DESIGN_ID-SLUG
  4. Paginates until no further pages are detected
  5. Merges all pages into one creator record

Designs are deduplicated across pages by design_id.