# Home Depot Product API (https://www.socialcrawl.dev/platforms/home_depot/product) > Returns full product detail for a Home Depot item: title, brand, model number, UPC, description, highlight bullets, current and original price, star rating with its 1-5 histogram, review count, the image gallery, a grouped specification table, and stock status. It also returns per-store inventory under product.ext.store_inventory, giving the actual unit count on the shelf at each nearby store, which is the field nothing else in this API sells. Pass store_id or zipcode to localise pricing and that inventory. For the review text call GET /v1/home_depot/reviews with the same item id. TL;DR: `GET /v1/home_depot/product` 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 | | --- | --- | --- | | `item_id` | no | Home Depot internet number (item id), the numeric id at the end of a homedepot.com product URL: homedepot.com/p//326680222 is item id 326680222. Pass url instead if you would rather hand over the whole product URL. | | `url` | no | Full Home Depot product page URL, used instead of item_id. The item id is extracted from it. | | `store_id` | no | Home Depot store number used to localise price, stock, and pickup availability, for example 121. | | `zipcode` | no | Five-digit US ZIP code used to localise delivery options and pricing, for example 30301. | ## Code example ```bash curl "https://www.socialcrawl.dev/v1/home_depot/product" \ -H "x-api-key: sc_YOUR_API_KEY" ``` ## FAQ ### Do I need the item id, or will a URL do? Either works. Pass the item id if you have it, or hand over the whole product page URL and the id is extracted for you. ### Where do the per-store stock numbers appear? Under the product's extension block as a store inventory list, each entry carrying the store id, store name, state, in-stock flag and the actual unit quantity. ### Does pricing change by location? It can. Pass a store id or ZIP code to localise price, stock and pickup availability, since Home Depot prices and stocks at store level. ### Is the review count a number? Yes. Home Depot sends it as a string on this endpoint, which we coerce to a number so it matches the review endpoint and every other product in the API. ### How do I get the review text? Call the reviews endpoint with the same item id. Product detail carries the rating and its star histogram but not the written reviews. 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 ## Explore with AI Questions this API answers, phrased for an AI assistant: - How do I get a Home Depot product price with an API? - Can I see how many units a Home Depot store has in stock? - How to look up Home Depot specs by item number