Solebox Scraper — German Sneaker & Streetwear Prices
Pricing
from $1.20 / 1,000 result scrapeds
Solebox Scraper — German Sneaker & Streetwear Prices
Scrape product data from solebox.com, a German sneaker and streetwear retailer known for hot releases. Extract names, brands, prices in EUR, sizes, stock levels, and images via Solebox's own product search API.
Pricing
from $1.20 / 1,000 result scrapeds
Rating
0.0
(0)
Developer
Studio Amba
Maintained by CommunityActor stats
0
Bookmarked
2
Total users
1
Monthly active users
20 hours ago
Last modified
Categories
Share
Solebox Scraper
Pull product data from solebox.com, a German sneaker and streetwear retailer known for sneaker culture and hot releases. This scraper pulls directly from Solebox's own product search API, so it returns clean, structured data -- brand, price in EUR, per-size stock, images -- without any HTML parsing.
How to scrape Solebox data
Give the actor a search term in German (e.g. "sneaker", "jordan", "jacke") and it queries Solebox's search endpoint directly, paginating until it hits maxResults or runs out of matching products. There's nothing to configure beyond the search term -- no category URLs to hunt down, no pagination logic to babysit.
Under the hood, Solebox's storefront (built on the SCAYLE headless-commerce platform) calls an unauthenticated JSON API at api.solebox.com for every search and category browse. This actor talks to that same API directly instead of rendering pages and parsing HTML, which makes it faster and far less likely to break when Solebox tweaks its frontend markup.
If you don't provide any input, it defaults to searching for "sneaker" as a demo.
Input
| Field | Type | Description |
|---|---|---|
searchQuery | string | Search term, in German (e.g. "jordan", "sneaker", "jacke") |
maxResults | integer | Cap on number of products returned (default: 100) |
proxyConfiguration | object | Apify proxy settings. Solebox's product API has no anti-bot protection, so the default Apify proxy is sufficient -- no residential proxy needed |
What you get back
| Field | Type | Example |
|---|---|---|
name | string | "Jordan Air Jordan 13 Retro \"Flint\" blau" |
brand | string | "Jordan" |
price | number | 159.99 |
originalPrice | number | null | 199.99 (only set when the item is discounted) |
currency | string | "EUR" |
discount | string | null | "-20%" |
sku | string | "02584605" |
productId | string | "m02548974" |
inStock | boolean | null | true (null only if the source omits stock data) |
stockLevel | integer | null | 43 (total units across all sizes) |
url | string | Full product page URL |
imageUrl | string | Primary product image |
imageUrls | array | All product images |
category | string | null | Most specific category label the API exposes |
sizes | array | Per-size stock: [{"size": "41", "inStock": false, "stockQuantity": 0}] |
scrapedAt | string | ISO timestamp |
Sample output
{"name": "Jordan Air Jordan 13 Retro \"Flint\" blau","brand": "Jordan","price": 159.99,"originalPrice": 199.99,"currency": "EUR","discount": "-20%","sku": "02584605","productId": "m02548974","inStock": true,"stockLevel": 43,"url": "https://www.solebox.com/de-de/p/jordan-air-jordan-13-retro-flint-blau-98021","imageUrl": "https://asset.solebox.com/images/f_auto,q_auto,w_800/02584605_1/img","imageUrls": ["https://asset.solebox.com/images/f_auto,q_auto,w_800/02584605_1/img","https://asset.solebox.com/images/f_auto,q_auto,w_800/02584605_2/img"],"category": "Sneaker","sizes": [{ "size": "41", "inStock": false, "stockQuantity": 0 }],"scrapedAt": "2026-08-25T09:14:00.000Z"}
Use cases
- Price monitoring -- track Solebox's own price and discount changes over time on the sneaker releases and streetwear brands you sell against.
- Stock tracking --
sizesgives you per-size availability, useful for spotting which sizes sell out fastest on hot releases. - Assortment research -- see which brands and product lines Solebox is pushing, and at what EUR price points.
- Market comparison -- Solebox is a well-known German sneaker specialist, making it a useful reference point when benchmarking sneaker/streetwear retail pricing in the German market.
Coverage
v1 covers the German storefront (solebox.com/de-de) -- Solebox's default locale, confirmed live (the homepage redirects straight to /de-de/).
Performance and cost
The scraper hits Solebox's JSON API directly -- no browser rendering, no HTML parsing -- so it's fast. A run of 100 products typically completes in well under 10 seconds and uses a fraction of a compute unit. You're billed per actor start plus per result scraped; check the current per-event pricing on this actor's page before running at scale. Your run's usage cost only settles after the run reports SUCCEEDED -- checking cost mid-run will undercount it.
Limitations
- German locale only in v1 (
de-de). Solebox also serves other European markets underen-eupaths; those aren't covered yet. - Ratings and review counts aren't exposed by the search API, so they're not included in the output.
- The API's
X-Charybdisheader (a shop-configuration blob) was harvested from a live browsing session. It's static shop config, not a rotating secret, but if Solebox ever regenerates it, requests will start failing until the actor is updated. - Search is keyword-based, matching Solebox's own on-site search. It does not accept direct product or category URLs.
Related scrapers
If you're covering German or European sneaker/streetwear retail more broadly, also check out:
- Snipes Scraper -- German streetwear/sneaker retailer, same SCAYLE tenant family
- Deichmann Scraper -- German footwear, same SCAYLE platform family
- Ochsner Sport Scraper -- Swiss sporting goods, same SCAYLE platform family
- Dosenbach Scraper -- Swiss footwear, same SCAYLE platform family
- Van Haren Scraper -- Dutch/Belgian footwear, same SCAYLE platform family
Support
Found an issue or need a different locale covered? Open an issue on this actor's Apify Store page and we'll take a look.