# Home Depot Search API (https://www.socialcrawl.dev/platforms/home_depot/search) > Returns Home Depot products matching a keyword, 24 per page, each with its item id, title, brand, model number, current and original price, star rating, review count, image gallery, stock status, and department. Feed a returned item id into GET /v1/home_depot/product for full detail including per-store shelf counts, or GET /v1/home_depot/reviews for the review text. Pass store_id to localise pricing and availability; get a store id from GET /v1/home_depot/stores. This is also the keyword-to-item-id resolver for the rest of the Home Depot API. It takes no sort or filter parameters and rejects them rather than ignoring them, so filter and sort on the returned rows. total is the real match count and holds steady across pages; paginate on has_more, capped at 30 pages. TL;DR: `GET /v1/home_depot/search` costs 5 credits per call and returns SocialCrawl's unified JSON schema. Single x-api-key auth, 100 free credits on signup. ## Parameters | Parameter | Required | Description | | --- | --- | --- | | `query` | yes | Free-text product search, for example drill or cordless impact driver. | | `page` | no | Page number, 1 to 30. Prefer the universal cursor parameter. | | `store_id` | no | Home Depot store number used to localise price, stock, and pickup availability, for example 121. | ## Code example ```bash curl "https://www.socialcrawl.dev/v1/home_depot/search?query=drill" \ -H "x-api-key: sc_YOUR_API_KEY" ``` See the full Home Depot API: https://www.socialcrawl.dev/platforms/home_depot ## Pricing - Standard endpoints: 1 credit per call - Advanced endpoints: 5 credits per call - Premium endpoints: 10 credits per call - 100 free credits on signup, no credit card required. Cached responses cost 0 credits. Credit packs never expire. - Full pricing: https://www.socialcrawl.dev/pricing