Endpoint Playground
Test Crawlora's Home Depot product questions 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>/questions" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| id (path) | string | Yes | Home Depot product/internet id, e.g. 328425526 |
{
"code": 200,
"data": {
"count": 8,
"fetched_at": "sample",
"id": "328425526",
"questions": [
{
"answer_count": 1,
"answers": [
{
"author": "sample",
"date": "sample",
"helpful_count": 1,
"id": "sample-id",
"is_brand_answer": true,
"text": "sample"
}
],
"author": "sample",
"date": "sample",
"id": "sample-id",
"text": "sample"
}
],
"source_url": "https://example.com/resource",
"total": 575
},
"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 the first page (8 questions) of a Home Depot product's customer questions and answers, plus the product's total Q&A count. id is the numeric product/internet id. A product with no Q&A returns a genuine zero-result response rather than an error.
{
"code": 200,
"data": {
"count": 8,
"fetched_at": "sample",
"id": "328425526",
"questions": [
{
"answer_count": 1,
"answers": [
{
"author": "sample",
"date": "sample",
"helpful_count": 1,
"id": "sample-id",
"is_brand_answer": true,
"text": "sample"
}
],
"author": "sample",
"date": "sample",
"id": "sample-id",
"text": "sample"
}
],
"source_url": "https://example.com/resource",
"total": 575
},
"msg": "OK"
}curl "https://api.crawlora.net/api/v1/homedepot/product/<id>/questions" \
-H "x-api-key: $CRAWLORA_API_KEY"