J.Crew API endpoint
Use Crawlora's J.Crew Search API to extract supported public J.Crew data as structured JSON. This page includes request parameters, cURL examples, response schema, error behavior, credit cost, and a Playground link for testing before integration.
/jcrew/searchSearches the product catalog for either storefront (select with site, default jcrew). Returns normalized product summaries with USD pricing, gender, and a description, plus the search index's own facets (gender, fabric, category, size, color, price range, and others) with live per-option counts. sort selects relevance (default), price_asc, or price_desc. filter narrows results by one or more facet name:value pairs (comma-separated, e.g. productGender:Men,styleFabric:Cashmere) taken from a prior response's own facets[].name/facets[].options[].value fields -- not curated against a fixed list, since the facet set is large and can change. This is best-effort relevance, not a guaranteed keyword match: for an obscure alphanumeric keyword the upstream search index falls back to its own semantically-related results instead of an empty list, and there is no reliable field in the response to distinguish a true keyword match from that fallback. Developers commonly use this endpoint for data enrichment, monitoring, research dashboards, internal automation, and agent-native workflows that need repeatable structured public web data. Authentication uses the documented Crawlora headers, and usage is metered with the credit cost shown on this page.
Request parameters are generated from the active endpoint catalog. Required values must be sent before Crawlora can call the upstream public web data source.
| Parameter | Type | Required | Default | Description | Example |
|---|---|---|---|---|---|
| keyword | string | Yes | Search keyword | ||
| site | string | No | Storefront to search Allowed values: jcrew, factory | ||
| page | integer | No | One-based page Minimum: 1. Maximum: 500. | ||
| per_page | integer | No | Results per page Minimum: 1. Maximum: 100. | ||
| sort | string | No | Sort order Allowed values: relevance, price_asc, price_desc | ||
| filter | string | No | Comma-separated facet name:value pairs, e.g. productGender:Men,styleFabric:Cashmere | ||
| x-api-key (header) | string | Yes | API key required |
curl -X GET "https://api.crawlora.net/api/v1/jcrew/search?keyword=coffee&site=jcrew&page=1&sort=relevance" \ -H "x-api-key: $CRAWLORA_API_KEY"
Send your scraping API key in the x-api-key header. Use the console API Keys page to rotate or select the active key.
Endpoint usage is metered in credits. The plan prices, included credits, limits, and overage rates below match the active backend billing configuration.
| Plan | Price | Included credits | Daily cap | Rate limit | Overage |
|---|---|---|---|---|---|
| Free | $0/mo | 2,000 | 500 daily credits | 5/min | No overage |
| Starter | $9/mo | 20,000 | 5,000 daily credits | 15/min | $0.75/1,000 overage credits when enabled |
| Growth | $29/mo | 100,000 | 25,000 daily credits | 45/min | $0.45/1,000 overage credits when enabled |
| Pro | $79/mo | 400,000 | No daily cap | 120/min | $0.30/1,000 overage credits |
| Business | $199/mo | 1,200,000 | No daily cap | 300/min | $0.20/1,000 overage credits |
| Enterprise | $499/mo | 5,000,000 | No daily cap | 1,000/min | $0.12/1,000 overage credits |
This endpoint is executed through Crawlora's managed scraping infrastructure.
- This search is best-effort relevance, not a guaranteed keyword match. For an obscure alphanumeric keyword, the upstream search index falls back to its own semantically-related results (Constructor.io's own "embeddings match" fallback) instead of an empty list, and there is no reliable field in the response to distinguish a true keyword match from that fallback. A genuine empty result was only reproduced with a symbols-only query. - `total_products` and `total_pages` reflect the upstream's own result count for the current `keyword`/`site`/`filter` combination. - Each product's `id` is the value to pass as `pid` to `jcrew-product-reviews`, `jcrew-product`, or `jcrew-size-chart` (with the same `site`). - `price_min`/`price_max` and `sale_price_min`/`sale_price_max` are USD, aggregated across every fit the style is offered in. - `facets` lists the search index's own available filters (gender, fabric, category, size, color, price range, and others) with live per-option result counts. A range facet (only `price` observed) sets `is_range` true and carries `range_min`/`range_max` instead of `options`. - `site=factory` uses J.Crew Factory's own independent search index (Constructor.io key, separate from the flagship site) -- results, facets, and product ids are entirely separate from `site=jcrew`. Example response: ```json {"code":200,"msg":"OK","data":{"keyword":"sweater","site":"jcrew","sort":"relevance","page":1,"per_page":24,"total_pages":15,"total_products":338,"count":1,"products":[{"id":"CX415","family_id":"ME617","name":"2025 Rollneck sweater","description":"A J.Crew icon since the '80s, refreshed for right now...","gender":"Women","image_url":"http://www.jcrew.com/s7-img-facade/CX415_NA6434?fmt=jpeg&qlt=90,0","orderable":true,"price_min":98,"price_max":128,"sale_price_min":98,"sale_price_max":98,"url":"https://www.jcrew.com/p/CX415"}],"facets":[{"name":"productGender","label":"Gender","type":"multiple","options":[{"label":"Women","value":"Women","count":208}]},{"name":"price","label":"Price","type":"range","is_range":true,"range_min":28,"range_max":429.99}]}} ```
Crawlora does not silently return bad data when the upstream page cannot be used.
| Status | Common failure case |
|---|---|
| 400 | Invalid input or missing required parameter |
| 429 | Plan or endpoint rate limit exceeded |
| 500 | Internal execution error |
| 502 | Upstream platform failed, returned unusable HTML, or served a challenge page that could not be resolved |
When possible, Crawlora returns structured error context so your integration can retry, back off, or inspect the request.
| Status | Description | Schema |
|---|---|---|
| 400 | Bad Request | #/definitions/app.Response |
| 429 | Too Many Requests | #/definitions/app.Response |
| 503 | Service Unavailable | #/definitions/app.Response |
{
"code": 200,
"msg": "OK",
"data": {
"keyword": "sweater",
"site": "jcrew",
"sort": "relevance",
"page": 1,
"per_page": 24,
"total_pages": 15,
"total_products": 338,
"count": 1,
"products": [
{
"id": "CX415",
"family_id": "ME617",
"name": "2025 Rollneck sweater",
"description": "A J.Crew icon since the '80s, refreshed for right now...",
"gender": "Women",
"image_url": "http://www.jcrew.com/s7-img-facade/CX415_NA6434?fmt=jpeg&qlt=90,0",
"orderable": true,
"price_min": 98,
"price_max": 128,
"sale_price_min": 98,
"sale_price_max": 98,
"url": "https://www.jcrew.com/p/CX415"
}
],
"facets": [
{
"name": "productGender",
"label": "Gender",
"type": "multiple",
"options": [
{
"label": "Women",
"value": "Women",
"count": 208
}
]
},
{
"name": "price",
"label": "Price",
"type": "range",
"is_range": true,
"range_min": 28,
"range_max": 429.99
}
]
}
}Request schema
No body schema
Response schema
#/definitions/jcrew.searchResponseDoc
| Field | Type | Required | Enum | Bounds | Example | Description |
|---|---|---|---|---|---|---|
| code | integer | No | 200 | |||
| data | jcrew.SearchResponse | No | ||||
| data.count | integer | No | ||||
| data.facets | array | No | ||||
| data.facets[].is_range | boolean | No | ||||
| data.facets[].label | string | No | ||||
| data.facets[].name | string | No | ||||
| data.facets[].options | array | No | ||||
| data.facets[].options[].count | integer | No | ||||
| data.facets[].options[].label | string | No | ||||
| data.facets[].options[].value | string | No | ||||
| data.facets[].range_max | number | No | ||||
| data.facets[].range_min | number | No | ||||
| data.facets[].type | string | No | ||||
| data.fetched_at | string | No | ||||
| data.filter | string | No | ||||
| data.keyword | string | No | ||||
| data.page | integer | No | ||||
| data.per_page | integer | No | ||||
| data.products | array | No | ||||
| data.products[].description | string | No | ||||
| data.products[].family_id | string | No | ||||
| data.products[].gender | string | No | ||||
| data.products[].id | string | No | ||||
| data.products[].image_url | string | No | ||||
| data.products[].name | string | No | ||||
| data.products[].orderable | boolean | No | ||||
| data.products[].price_max | number | No | ||||
| data.products[].price_min | number | No | ||||
| data.products[].sale_price_max | number | No | ||||
| data.products[].sale_price_min | number | No | ||||
| data.products[].url | string | No | ||||
| data.site | string | No | ||||
| data.sort | string | No | ||||
| data.source_url | string | No | ||||
| data.total_pages | integer | No | ||||
| data.total_products | integer | No | ||||
| msg | string | No | OK |
Use environment variables for secrets and keep Crawlora API keys server-side.
curl -X GET "https://api.crawlora.net/api/v1/jcrew/search?keyword=coffee&site=jcrew&page=1&sort=relevance" \
-H "x-api-key: $CRAWLORA_API_KEY"Crawlora is designed for responsible structured public web data workflows. Customers are responsible for using Crawlora in compliance with applicable laws, third-party rights, target-platform rules, and Crawlora terms.
Read Crawlora terms