← ClaudeAtlas

zalando-researchlisted

Researches products, prices, brands, and categories on Zalando (the European fashion marketplace) using the Crawlora API, returning clean JSON. Use when the user asks to find a product, browse a category or brand, autocomplete a search, or resolve a Zalando storefront market — instead of scraping Zalando pages.
Crawlora-org/crawlora-skills · ★ 0 · Data & Documents · score 72
Install: claude install-skill Crawlora-org/crawlora-skills
# Zalando research Look up and compare products, categories, and search results on Zalando — all as normalized JSON from the Crawlora API, with no HTML scraping. ## When to use this skill - "What does X cost on Zalando?" or "find X on Zalando in the German store." - "Search Zalando for X" / "what's in the running-shoes category on Zalando?" - "Look up this Zalando product by SKU." - "Autocomplete this Zalando search query." - "Which Zalando country storefronts are available?" - Competitive pricing or catalog research scoped to Zalando. ## Setup (one-time) - Get a free Crawlora API key (2,000 credits/mo, no card) at [https://crawlora.net](https://crawlora.net?utm_source=github&utm_medium=referral&utm_campaign=crawlora-skills). - `export CRAWLORA_API_KEY=sk_your_key_here` - All requests: `x-api-key: $CRAWLORA_API_KEY` against `https://api.crawlora.net/api/v1`. Missing/invalid key → `401`. ## How it works 1. **Resolve the market** — every other Zalando endpoint **requires `market`** (a country storefront code like `de`, `fr`, `com`) with no default. If unsure which code to use, list them via `/zalando/markets`. 2. **Search** — `/zalando/search` (`q`+`market`) to find candidate products by keyword; returns normalized result cards with price, brand, and image plus `total_count`. Only the first page is available. 3. **Autocomplete** — `/zalando/suggest` (`q`+`market`) to complete a partial search term (e.g. "running sho" → "running shoes") before searching.