Endpoint Playground
Test Crawlora's J.Crew Category Listing 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/category?category=<category>&site=jcrew" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| category | string | Yes | Slash-separated category path -- see jcrew-categories | |
| site | string | No | jcrew | Storefront to browse |
| page | integer | No | One-based page |
{
"code": 200,
"msg": "OK",
"data": {
"category": "womens/categories/clothing/sweaters",
"site": "jcrew",
"label": "sweaters",
"gender": "Women",
"page": 1,
"result_count": 142,
"total_pages": 3,
"count": 1,
"products": [
{
"id": "CX432",
"family_id": "MQ186",
"name": "Rollneck reversible cardigan",
"default_color_code": "PR5252",
"color_codes": [
"SX0172",
"SX0001",
"PR5252",
"NA6434",
"GR6794",
"BL8133",
"BK0001"
],
"price": 1193,
"currency": "USD",
"badge": "new color",
"average_rating": 4.73,
"review_count": 52,
"url": "https://www.jcrew.com/p/womens/categories/clothing/sweaters/cardigan/rollnecktrade-reversible-cardigan/MQ186"
}
]
}
}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 one page (up to 60 products) of a category/browse listing for a category path. category is the slash-separated path segment after the storefront's own /plp/ (e.g. womens/categories/clothing/sweaters) -- use jcrew-categories to discover every valid value instead of guessing from storefront URLs. site selects the storefront (default jcrew). page selects the SFCC-native page (default 1); result_count reports the upstream's true total regardless of page size. A hub-level (non-leaf) category path returns a well-formed empty result rather than an error.
{
"code": 200,
"msg": "OK",
"data": {
"category": "womens/categories/clothing/sweaters",
"site": "jcrew",
"label": "sweaters",
"gender": "Women",
"page": 1,
"result_count": 142,
"total_pages": 3,
"count": 1,
"products": [
{
"id": "CX432",
"family_id": "MQ186",
"name": "Rollneck reversible cardigan",
"default_color_code": "PR5252",
"color_codes": [
"SX0172",
"SX0001",
"PR5252",
"NA6434",
"GR6794",
"BL8133",
"BK0001"
],
"price": 1193,
"currency": "USD",
"badge": "new color",
"average_rating": 4.73,
"review_count": 52,
"url": "https://www.jcrew.com/p/womens/categories/clothing/sweaters/cardigan/rollnecktrade-reversible-cardigan/MQ186"
}
]
}
}curl "https://api.crawlora.net/api/v1/jcrew/category?category=<category>" \
-H "x-api-key: $CRAWLORA_API_KEY"