Endpoint Playground
Test Crawlora's J.Crew Size Chart 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/size-chart?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",
"columns": [
"Chest",
"Waist",
"Hip",
"Sleeve",
"Length"
],
"sizes": [
{
"size": "4",
"imperial": {
"Chest": 39,
"Waist": 29.5,
"Hip": 0,
"Sleeve": 15.63,
"Length": 0
},
"metric": {
"Chest": 99.06,
"Waist": 74.93,
"Hip": 0,
"Sleeve": 39.69,
"Length": 0
}
}
],
"source_url": "https://www.jcrew.com/size-chart/CI906",
"fetched_at": "2026-08-19T10:00:00Z"
}
}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 real body measurements per size (chest, waist, hip, sleeve, length, or a subset depending on the style/category), in both inches and centimeters. pid is a style id, as returned by jcrew-search's products[].id field. site must match the storefront the pid belongs to (default jcrew). A measurement value of 0 means that column doesn't apply to this style (e.g. hip on a top) -- the upstream itself doesn't distinguish that from a genuine zero, so this endpoint passes it through as-is.
{
"code": 200,
"msg": "OK",
"data": {
"pid": "CI906",
"site": "jcrew",
"columns": [
"Chest",
"Waist",
"Hip",
"Sleeve",
"Length"
],
"sizes": [
{
"size": "4",
"imperial": {
"Chest": 39,
"Waist": 29.5,
"Hip": 0,
"Sleeve": 15.63,
"Length": 0
},
"metric": {
"Chest": 99.06,
"Waist": 74.93,
"Hip": 0,
"Sleeve": 39.69,
"Length": 0
}
}
],
"source_url": "https://www.jcrew.com/size-chart/CI906",
"fetched_at": "2026-08-19T10:00:00Z"
}
}curl "https://api.crawlora.net/api/v1/jcrew/size-chart?pid=<pid>" \
-H "x-api-key: $CRAWLORA_API_KEY"