Endpoint Playground
Test Crawlora's Kohl's Category Browse 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/kohls/category?category=<category>" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| category | string | Yes | Kohl's catalog taxonomy string, e.g. \ |
{
"code": 200,
"data": {
"category": "Room:Dorm",
"count": 120,
"facets": [
{
"label": "Department",
"name": "Department",
"options": [
{
"active": true,
"category": "Room:Dorm+Department:Bedding",
"name": "Bedding",
"product_count": 479
}
]
}
],
"fetched_at": "sample",
"limit": 120,
"product_count": 1317,
"products": [
{
"available_for_pickup": false,
"available_for_ship": true,
"colors": [
"sample"
],
"currency_code": "USD",
"image_url": "https://example.com/resource",
"on_sale": true,
"rating": 3.9,
"regular_price": {
"max_price": 9.99,
"min_price": 2.99
},
"review_count": 27103,
"sale_price": {
"max_price": 9.99,
"min_price": 2.99
},
"title": "The Big One® Solid Bath Towel, Bath Sheet, Hand Towel or Washcloth",
"url": "https://example.com/resource",
"web_id": "4569328"
}
],
"source_url": "https://example.com/resource",
"title": "Essential Dorm Items for College-Bound Students | Kohl's",
"total_pages": 11
},
"msg": "OK"
}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 a Kohl's category or curated campaign page's product grid (page 1 only), with normalized products (title, image, colors, pricing, rating, availability) and facets for discovering further category values. category is Kohl's own catalog taxonomy string, e.g. "Room:Dorm" or "Department:Kitchen & Dining" -- combine multiple dimensions with a literal "+", percent-encoded as "%2B" so it survives as "+" rather than being decoded to a space (e.g. "Room%3ADorm%2BDepartment%3ABedding"). Every facets[].options[].category value in a response is a ready-to-use category string for a follow-up call, so a caller can discover the full taxonomy by starting from a known category (e.g. "Room:Dorm") and following facets. A category value Kohl's does not recognize returns a 404 rather than an unfiltered listing; a recognized dimension with no matching products returns a genuine zero-result response instead.
{
"code": 200,
"data": {
"category": "Room:Dorm",
"count": 120,
"facets": [
{
"label": "Department",
"name": "Department",
"options": [
{
"active": true,
"category": "Room:Dorm+Department:Bedding",
"name": "Bedding",
"product_count": 479
}
]
}
],
"fetched_at": "sample",
"limit": 120,
"product_count": 1317,
"products": [
{
"available_for_pickup": false,
"available_for_ship": true,
"colors": [
"sample"
],
"currency_code": "USD",
"image_url": "https://example.com/resource",
"on_sale": true,
"rating": 3.9,
"regular_price": {
"max_price": 9.99,
"min_price": 2.99
},
"review_count": 27103,
"sale_price": {
"max_price": 9.99,
"min_price": 2.99
},
"title": "The Big One® Solid Bath Towel, Bath Sheet, Hand Towel or Washcloth",
"url": "https://example.com/resource",
"web_id": "4569328"
}
],
"source_url": "https://example.com/resource",
"title": "Essential Dorm Items for College-Bound Students | Kohl's",
"total_pages": 11
},
"msg": "OK"
}curl "https://api.crawlora.net/api/v1/kohls/category?category=<category>" \
-H "x-api-key: $CRAWLORA_API_KEY"