Install
openclaw skills install @tonywangcn/zalando-researchResearches 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.
openclaw skills install @tonywangcn/zalando-researchLook up and compare products, categories, and search results on Zalando — all as normalized JSON from the Crawlora API, with no HTML scraping.
export CRAWLORA_API_KEY=sk_your_key_herex-api-key: $CRAWLORA_API_KEY against
https://api.crawlora.net/api/v1. Missing/invalid key → 401.market
(a country storefront code like de, fr, com) with no default. If
unsure which code to use, list them via /zalando/markets./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./zalando/suggest (q+market) to complete a partial
search term (e.g. "running sho" → "running shoes") before searching./zalando/product (sku+market) to fetch brand,
description, images, and per-size price/availability/GTIN for one product,
using a sku from search or category results./zalando/category (category+market) to browse
a category or brand listing by market-specific URL slug, returning the
same result cards as search plus total_count.Full endpoint list, methods, and params: reference/endpoints.md.
# Resolve storefronts, then search a market (GET, key=value params):
scripts/crawlora.sh /zalando/markets | jq '.'
scripts/crawlora.sh /zalando/search q="running shoes" market=de | jq '.'
# Product detail (sku from a search/category result, same market):
scripts/crawlora.sh /zalando/product sku=AD116A0FL-Q11 market=de | jq '{title,price}'
# Browse a category, and autocomplete a partial query:
scripts/crawlora.sh /zalando/category category=shoes market=de | jq '.'
scripts/crawlora.sh /zalando/suggest q="running sho" market=de | jq '.'
Raw curl fallback:
curl -fsS -H "x-api-key: $CRAWLORA_API_KEY" \
"https://api.crawlora.net/api/v1/zalando/search?q=running+shoes&market=de" | jq '.'
See reference/endpoints.md for every Zalando
endpoint this skill uses (method, path, params, description).
/zalando/markets to confirm the right
code, then /zalando/search in that market to pull current prices for a
keyword./zalando/category with a market-specific slug (e.g.
shoes on de/gb, chaussures on fr) to list a category's catalog
and flag items above/below a price threshold./zalando/search to find candidate SKUs,
then /zalando/product on the best match for full price/size/availability.2xx; free tier 2,000 credits/mo.
Key at https://crawlora.net.CRAWLORA_API_KEY only — never hardcode, query-param, or commit it.market (no default storefront) — resolve valid
codes via /zalando/markets if unsure. A sku is generally only listed
for sale on the market(s) it was found in, so keep market consistent
between search/category and product-detail calls.url field, not from another market./zalando/search and /zalando/category return only the first page of
results; deeper pagination is not yet supported.