Endpoint Playground
Test Crawlora's Home Depot 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/homedepot/category?path=<path>" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| path | string | Yes | Home Depot category/brand browse path, e.g. \ |
{
"code": 200,
"data": {
"count": 1,
"fetched_at": "sample",
"path": "sample",
"products": [
{
"id": "320326875",
"image": "sample",
"model": "2953-20",
"original_price": 199,
"price": 179,
"rating": 4.7,
"review_count": 1542,
"title": "M18 FUEL 18V Lithium-Ion Brushless Cordless 1/4 in. Hex Impact Driver (Tool-Only)",
"url": "https://example.com/resource"
}
],
"source_url": "https://example.com/resource",
"title": "sample",
"total": 1
},
"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 one Home Depot category or brand browse page's product grid (page 1 only): normalized products with title, image, model, current/original price, and rating/review count, plus the category's total result count. path is the segment of a /b/ URL after "/b/", e.g. "Tools-Power-Tools-Drills-Impact-Drivers/N-5yc1vZc29x"; a full https://www.homedepot.com/b/... URL or a "/b/..." path is also accepted. An unrecognized or blocked path returns an upstream error rather than an empty result.
{
"code": 200,
"data": {
"count": 1,
"fetched_at": "sample",
"path": "sample",
"products": [
{
"id": "320326875",
"image": "sample",
"model": "2953-20",
"original_price": 199,
"price": 179,
"rating": 4.7,
"review_count": 1542,
"title": "M18 FUEL 18V Lithium-Ion Brushless Cordless 1/4 in. Hex Impact Driver (Tool-Only)",
"url": "https://example.com/resource"
}
],
"source_url": "https://example.com/resource",
"title": "sample",
"total": 1
},
"msg": "OK"
}curl "https://api.crawlora.net/api/v1/homedepot/category?path=<path>" \
-H "x-api-key: $CRAWLORA_API_KEY"