Marketplace pricing and availability monitoring
Use Wish endpoints to turn marketplace pricing and availability monitoring into repeatable API requests with documented inputs and JSON responses.
Turn Wish's own internal marketplace data into structured JSON — keyword product search with real offset-based pagination, and per-product detail with pricing, sold-out state, aggregate rating, images, and every purchasable size/color/merchant variation, all as normalized JSON. Credential-free.
Search Wish's product catalog and get full product detail — pricing, availability, images, and every purchasable variation — as structured JSON.
Endpoint families
3
Documented params
14
Examples
0
Live catalog snapshot
Active endpoints
5
Methods
GET
Required params
10
Schema refs
5
{
"platform": "Wish",
"endpoint": "wish-search",
"method": "GET",
"path": "/wish/search",
"auth": "apiKey"
}Use cases
Search Wish's product catalog and get full product detail — pricing, availability, images, and every purchasable variation — as structured JSON.
Use Wish endpoints to turn marketplace pricing and availability monitoring into repeatable API requests with documented inputs and JSON responses.
Use Wish endpoints to turn product catalog research into repeatable API requests with documented inputs and JSON responses.
Use Wish endpoints to turn merchant and variation tracking into repeatable API requests with documented inputs and JSON responses.
Managed execution
Each Crawlora platform API is designed around a specific data surface. Instead of exposing a generic fetch endpoint, Crawlora combines endpoint-specific request logic, managed infrastructure, parsing, normalization, billing, and Playground-tested examples.
Request behavior is tuned for the target platform and endpoint type.
Supported endpoints can use managed proxy routing to improve reliability and reduce infrastructure work.
Dynamic pages can be routed through managed browser instances where JavaScript rendering is required.
Challenge pages and unusable upstream responses are detected and surfaced clearly.
Results are returned as documented JSON instead of raw HTML.
Test the same route from Docs and Playground before production integration.
Coverage map
These cards are generated from the active endpoint catalog, so the landing page reflects the same API surface used by Docs and Playground.
/wish/product/{id}
/wish/search
/wish/suggest
Endpoint catalog
/wish/searchSearches Wish's product catalog by keyword, with real offset-based pagination. Returns normalized products with price, currency, rating, review count, and merchant id. A query with no matches returns a normal, empty result rather than an error.
/wish/product/{id}Returns one Wish product's full detail: name, description, sold-out state, aggregate rating, image URLs, and every purchasable variation with its own price, currency, inventory, and merchant. id is taken from a search result's product_id field or a product page's URL. An unrecognized id returns 404.
/wish/product/{id}/relatedReturns a Wish product's related-item rails: shelves of similar products, grouped by rail (e.g. general similar items, a faster-shipping-eligible subset). id is taken from a search result's product_id field or a product page's URL. A faster-shipping rail with no eligible items, or a nonexistent id, returns a normal, empty result rather than an error.
/wish/product/{id}/reviewsReturns a Wish product's normalized customer reviews. id is taken from a search result's product_id field or a product page's URL. A product with zero reviews returns a normal, empty result rather than an error. A caller wanting more reviews should re-request with a larger count -- this endpoint does not support an offset/cursor parameter, since the upstream source does not support one.
/wish/suggestReturns Wish's own search-suggestion (typeahead) result for a partial search term: a flat list of suggested search terms, no product data. A partial term with no matches returns a normal, empty result rather than an error.
Related APIs
Marketplaces & Retail
Collect marketplace product signals from Amazon without building brittle storefront scrapers.
Marketplaces & Retail
Build resale, pricing, and marketplace workflows from structured eBay data.
Marketplaces & Retail
Turn public Shop.app product and merchant pages into structured JSON for e-commerce product intelligence, price research, shop monitoring, and marketplace discovery workflows.
How to scrape Wish
Crawlora's Wish endpoints return search and product detail as normalized JSON with one API key — no Wish account required.
Send a free-text query to /wish/search for paginated, normalized products with price, currency, rating, review count, and merchant id.
Pass a 24-character hex product id (from a search result's product_id field or a product page URL) to /wish/product/{id} for full detail — description, sold-out state, aggregate rating, images, and every purchasable variation with its own price, currency, inventory, and merchant.
FAQ
Yes — /wish/search uses real offset-based pagination. offset must be an exact multiple of the count used on the first page (default count is 30), and a nonzero offset costs one extra upstream request per page walked. A query with no matches returns a normal 200 with an empty products array.
Yes — /wish/product/{id} returns every purchasable size/color/merchant variation, each with its own price, currency, inventory, and merchant — a single-SKU product still returns a one-element list.
No Wish account or API key is required from the caller — only your Crawlora API key.