Endpoint Playground
Test Crawlora's Home Depot keyword search 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/search?q=<q>" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| q | string | Yes | Free-text search keywords, e.g. \ | |
| page | integer | No | 1-indexed page number, default 1 |
{
"code": 200,
"data": {
"count": 24,
"fetched_at": "sample",
"page": 1,
"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"
}
],
"query": "impact driver",
"source_url": "https://example.com/resource",
"total": 1962
},
"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 page (up to 24 products) of a Home Depot keyword search's product listing: normalized products with title, image, model, current/original price, and rating/review count, plus the search's total result count. q is free-text search keywords, e.g. "impact driver". page is a 1-indexed page number (default 1). An unrecognized/blocked query returns an upstream error rather than an empty result.
{
"code": 200,
"data": {
"count": 24,
"fetched_at": "sample",
"page": 1,
"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"
}
],
"query": "impact driver",
"source_url": "https://example.com/resource",
"total": 1962
},
"msg": "OK"
}curl "https://api.crawlora.net/api/v1/homedepot/search?q=<q>" \
-H "x-api-key: $CRAWLORA_API_KEY"