Endpoint Playground
Test Crawlora's J.Crew Product Detail API with realistic prefilled parameters. Generate a cURL request, inspect the expected structured JSON response, and open the full docs or pricing page when you are ready to integrate this public web data extraction endpoint into your application.
curl "https://api.crawlora.net/api/v1/jcrew/product?pid=<pid>&site=jcrew" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| pid | string | Yes | Style id, from a search result's id field | |
| site | string | No | jcrew | Storefront the pid belongs to |
{
"code": 200,
"msg": "OK",
"data": {
"pid": "CI906",
"site": "jcrew",
"name": "Arden shirt-dress in cotton poplin",
"brand": "J.Crew",
"gender": "women",
"description": "A modern take on the classic shirt-dress...",
"fit_description": [
"A-line silhouette.",
"Midi length, 50\" from high point of shoulder."
],
"category_id": "womens|categories|clothing|dresses-and-jumpsuits",
"list_price": 1800,
"currency": "USD",
"average_rating": 4.75,
"rating_count": 105,
"colors": [
{
"code": "BR8840",
"name": "AGED PINE",
"image_url": "https://www.jcrew.com/s7-img-facade/CI906_BR8840?..."
},
{
"code": "BL8133",
"name": "NAVY",
"image_url": "https://www.jcrew.com/s7-img-facade/CI906_BL8133?..."
}
],
"sizes": [
"00",
"0",
"2",
"4",
"6",
"8",
"10",
"12",
"14",
"16"
],
"skus": [
{
"color_code": "BR8840",
"color_name": "AGED PINE",
"size": "4",
"orderable": true,
"price": 1259,
"currency": "USD"
}
],
"url": "https://www.jcrew.com/p/womens/categories/clothing/dresses-and-jumpsuits/arden-shirt-dress-in-cotton-poplin/CI906"
}
}Public Playground
Sample responses, schemas, request previews, and code snippets are visible before sign in. Create an account when you are ready to save an API key and run authenticated requests.
Returns full product detail for one style: name, brand, description, category, list price, aggregate rating, every purchasable color, and every color+size combination as a separate priced/stocked SKU. pid is a style id (e.g. CX415), as returned by jcrew-search's products[].id field. site must match the storefront the pid belongs to (default jcrew). A single call covers every color and size of the style -- no per-color lookup needed.
{
"code": 200,
"msg": "OK",
"data": {
"pid": "CI906",
"site": "jcrew",
"name": "Arden shirt-dress in cotton poplin",
"brand": "J.Crew",
"gender": "women",
"description": "A modern take on the classic shirt-dress...",
"fit_description": [
"A-line silhouette.",
"Midi length, 50\" from high point of shoulder."
],
"category_id": "womens|categories|clothing|dresses-and-jumpsuits",
"list_price": 1800,
"currency": "USD",
"average_rating": 4.75,
"rating_count": 105,
"colors": [
{
"code": "BR8840",
"name": "AGED PINE",
"image_url": "https://www.jcrew.com/s7-img-facade/CI906_BR8840?..."
},
{
"code": "BL8133",
"name": "NAVY",
"image_url": "https://www.jcrew.com/s7-img-facade/CI906_BL8133?..."
}
],
"sizes": [
"00",
"0",
"2",
"4",
"6",
"8",
"10",
"12",
"14",
"16"
],
"skus": [
{
"color_code": "BR8840",
"color_name": "AGED PINE",
"size": "4",
"orderable": true,
"price": 1259,
"currency": "USD"
}
],
"url": "https://www.jcrew.com/p/womens/categories/clothing/dresses-and-jumpsuits/arden-shirt-dress-in-cotton-poplin/CI906"
}
}curl "https://api.crawlora.net/api/v1/jcrew/product?pid=<pid>" \
-H "x-api-key: $CRAWLORA_API_KEY"