Endpoint Playground
Test Crawlora's Home Depot 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/homedepot/product/<id>" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| id (path) | string | Yes | Home Depot product/internet id, e.g. 320326875 |
{
"code": 200,
"data": {
"brand": "Milwaukee",
"currency": "USD",
"description": "sample",
"fetched_at": "sample",
"gtin": "0045242637867",
"id": "320326875",
"images": [
"sample"
],
"key_features": [
{
"name": "Motor Type",
"value": "Brushed"
}
],
"model": "2953-20",
"price": 179,
"rating": 4.7,
"review_count": 1544,
"reviews": [
{
"author": "HomeDepotCustomer",
"body": "The impact is just what I needed.",
"headline": "Great tool",
"rating": 5
}
],
"sku": "1007901520",
"source_url": "https://example.com/resource",
"specifications": [
{
"name": "Battery Power Type",
"value": "Lithium Ion"
}
],
"title": "Milwaukee M18 FUEL 18V Lithium-Ion Brushless Cordless 1/4 in. Hex Impact Driver (Tool-Only) 2953-20",
"url": "https://example.com/resource"
},
"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 product's full detail: name, description, brand, model, store SKU, GTIN, price, images, aggregate rating and review count, and the featured customer reviews embedded on the product page. id is the numeric product/internet id (the trailing number of a /p/{slug}/{id} URL). The product page does not distinguish an unknown id from a known one in a consistent way, so an unrecognized id may return an upstream error rather than a not-found.
{
"code": 200,
"data": {
"brand": "Milwaukee",
"currency": "USD",
"description": "sample",
"fetched_at": "sample",
"gtin": "0045242637867",
"id": "320326875",
"images": [
"sample"
],
"key_features": [
{
"name": "Motor Type",
"value": "Brushed"
}
],
"model": "2953-20",
"price": 179,
"rating": 4.7,
"review_count": 1544,
"reviews": [
{
"author": "HomeDepotCustomer",
"body": "The impact is just what I needed.",
"headline": "Great tool",
"rating": 5
}
],
"sku": "1007901520",
"source_url": "https://example.com/resource",
"specifications": [
{
"name": "Battery Power Type",
"value": "Lithium Ion"
}
],
"title": "Milwaukee M18 FUEL 18V Lithium-Ion Brushless Cordless 1/4 in. Hex Impact Driver (Tool-Only) 2953-20",
"url": "https://example.com/resource"
},
"msg": "OK"
}curl "https://api.crawlora.net/api/v1/homedepot/product/<id>" \
-H "x-api-key: $CRAWLORA_API_KEY"