Solebox Scraper — German Sneaker & Streetwear Prices avatar

Solebox Scraper — German Sneaker & Streetwear Prices

Pricing

from $1.20 / 1,000 result scrapeds

Go to Apify Store
Solebox Scraper — German Sneaker & Streetwear Prices

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

Studio Amba

Maintained by Community

Actor 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

FieldTypeDescription
searchQuerystringSearch term, in German (e.g. "jordan", "sneaker", "jacke")
maxResultsintegerCap on number of products returned (default: 100)
proxyConfigurationobjectApify 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

FieldTypeExample
namestring"Jordan Air Jordan 13 Retro \"Flint\" blau"
brandstring"Jordan"
pricenumber159.99
originalPricenumber | null199.99 (only set when the item is discounted)
currencystring"EUR"
discountstring | null"-20%"
skustring"02584605"
productIdstring"m02548974"
inStockboolean | nulltrue (null only if the source omits stock data)
stockLevelinteger | null43 (total units across all sizes)
urlstringFull product page URL
imageUrlstringPrimary product image
imageUrlsarrayAll product images
categorystring | nullMost specific category label the API exposes
sizesarrayPer-size stock: [{"size": "41", "inStock": false, "stockQuantity": 0}]
scrapedAtstringISO 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 -- sizes gives 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 under en-eu paths; 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-Charybdis header (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.

If you're covering German or European sneaker/streetwear retail more broadly, also check out:

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.