Discover/harborfreight.com API
live

harborfreight.com APIharborfreight.com

Search Harbor Freight Tools products via API. Get real-time pricing, sale flags, review ratings, brand facets, and category data for any tool query.

Endpoints
1
Updated
3mo ago
Try it
Page number for pagination
Search query (e.g., 'drill', 'welding gloves', 'wrench set')
Number of results per page (max 36)
Include review ratings and counts. Accepted values: 'true', 'false'.
api.parse.bot/scraper/701b14f9-61c8-4a0e-bb0b-2aa9a1a236a7/<endpoint>
Ready to send
Fill in the parameters and hit sign in to send to see live response data here.
Use it in your codegrab a free API key at signup
curl -X GET 'https://api.parse.bot/scraper/701b14f9-61c8-4a0e-bb0b-2aa9a1a236a7/search_products?page=2&query=wrench+set&page_size=3' \
  -H 'X-API-Key: $PARSE_API_KEY'
All endpoints · 1 totalclick to expand

Search for products on Harbor Freight. Returns product listings with pricing, reviews, brand info, variants, member deals, and category/brand facets for filtering. Handles keyword-to-category redirects automatically.

Input
ParamTypeDescription
pageintegerPage number for pagination
queryrequiredstringSearch query (e.g., 'drill', 'welding gloves', 'wrench set')
page_sizeintegerNumber of results per page (max 36)
include_reviewsstringInclude review ratings and counts. Accepted values: 'true', 'false'.
Response
{
  "type": "object",
  "fields": {
    "page": "integer - current page number",
    "query": "string - the search query used",
    "brands": "array of objects with name and count - brand facets for filtering",
    "category": "string or null - resolved category name if search redirected to a category",
    "products": "array of product objects with sku, name, brand, url, image_url, price, regular_price, currency, on_sale, rating, review_count, and optional compare/variant info",
    "page_size": "integer - results per page",
    "categories": "array of objects with name, id, and count - category facets for filtering",
    "total_count": "integer - total number of matching products",
    "total_pages": "integer - total pages available",
    "auto_corrected_query": "string or null - auto-corrected query if spelling was adjusted"
  },
  "sample": {
    "data": {
      "page": 1,
      "query": "wrench set",
      "brands": [
        {
          "name": "PITTSBURGH",
          "count": 69
        }
      ],
      "category": "Wrenches",
      "products": [
        {
          "sku": "68790",
          "url": "https://www.harborfreight.com/fully-polished-metric-combination-wrench-set-14-piece-68790.html",
          "name": "Fully Polished Metric Combination Wrench Set, 14-Piece",
          "brand": "PITTSBURGH",
          "price": 24.99,
          "is_new": false,
          "rating": 4.7,
          "on_sale": false,
          "currency": "USD",
          "image_url": "https://www.harborfreight.com/media/catalog/product/cache/aa6c321fb362164a2ed76c30e077c9a9/i/m/image_25060.jpg",
          "retail_only": false,
          "review_count": 1339,
          "regular_price": 24.99,
          "compare_savings": "22%",
          "compare_at_brand": "HUSKY",
          "compare_at_price": 31.97,
          "eligible_channel": "All"
        }
      ],
      "page_size": 3,
      "categories": [
        {
          "id": "1909",
          "name": "Tool Sets",
          "count": 102
        }
      ],
      "total_count": 127,
      "total_pages": 43,
      "auto_corrected_query": null
    },
    "status": "success"
  }
}

About the harborfreight.com API

The Harbor Freight Tools API exposes one endpoint, search_products, that returns up to 36 product listings per page across Harbor Freight's full tool catalog. Each response includes 14+ fields per product: SKU, name, brand, URL, image, current price, regular price, currency, on-sale flag, rating, review count, and resolved category. Brand and category facets are returned alongside results for downstream filtering.

What search_products Returns

The search_products endpoint accepts a query string — anything from 'drill' to 'welding gloves' — and returns a paginated list of matching products. Each product object includes sku, name, brand, url, image_url, price, regular_price, currency, on_sale, rating, and review_count. The on_sale flag and the difference between price and regular_price let you detect active discounts without additional parsing.

Facets and Category Handling

Every response includes two facet arrays: brands (each with name and count) and categories (each with name, id, and count). These allow you to build filter UIs or narrow subsequent queries programmatically. If Harbor Freight's own search logic redirects a keyword to a specific department, the category field in the response will contain the resolved category name rather than null.

Pagination and Query Correction

Use page and page_size (maximum 36) to walk through results. total_count and total_pages tell you the full result set size upfront. The auto_corrected_query field will be non-null when the search engine applied a spelling correction, so you can surface that correction in your own UI rather than silently using the corrected term.

Review Data

Pass include_reviews=true to attach rating and review_count to each product. If you don't need that data and want a leaner response, pass include_reviews=false. This is the only optional toggle on the endpoint.

Common use cases
  • Track sale prices on specific tool categories by comparing price vs regular_price across daily snapshots
  • Build a Harbor Freight deal-finder that surfaces all products where on_sale is true for a given query
  • Aggregate brand coverage across a product category using the brands facet array
  • Monitor review_count and rating changes over time to detect trending or newly reviewed products
  • Populate a tool comparison table with SKU, price, rating, and image data for a specific search term
  • Identify category redirects by checking the category field to understand how Harbor Freight classifies a keyword
Pricing & limitsSee full pricing →
TierPriceCredits/monthRate limit
Free$0/mo1005 req/min
Hobby$30/mo1,00020 req/min
Developer$100/mo5,000250 req/min

One credit = one API call regardless of which marketplace API you call. Exceeding the rate limit returns a 429 response. Authenticate with the X-API-Key header.

Frequently asked questions
Does Harbor Freight have an official developer API?+
Harbor Freight does not publish a public developer API or API documentation for third-party access to its product catalog.
What does the `auto_corrected_query` field contain, and when is it set?+
It contains the spelling-corrected version of your original query when the search engine detected a misspelling and substituted a correction. It is null when your original query was used as-is. This lets you distinguish between results for your intended term and results for a silently corrected one.
Does the API return individual product detail pages, specifications, or inventory status?+
Not currently. The API covers search results with pricing, sale flags, ratings, and facets. Individual product specifications, stock levels, and store-level inventory are not included. You can fork the API on Parse and revise it to add a product detail endpoint covering those fields.
Are member pricing or club deal prices included in the response?+
The endpoint description notes that member deals data is part of the product objects returned, alongside price and regular_price. If a product has a member-specific discount, that information is included in the product object when available.
What is the maximum number of results I can retrieve per request, and how do I paginate?+
The page_size parameter caps at 36 results per request. Use page to advance through the result set, and use total_pages from the response to know when you've reached the last page. total_count gives you the full count of matching products across all pages.
Page content last updated . Spec covers 1 endpoint from harborfreight.com.
Related APIs in EcommerceSee all →
homedepot.com API
Search and browse Home Depot's product catalog to compare pricing, check real-time availability, and review detailed product specifications. Find products across all categories, look up store locations and hours, and check fulfillment options including in-store pickup and delivery.
getfpv.com API
Search and browse products from GetFPV's catalog of FPV drone components and accessories. Retrieve listings by keyword or category, view detailed product specifications, pricing, and stock status, and explore new arrivals and current sales.
lowes.com API
Search and browse products from Lowe's, including product listings by category, detailed product information, and pricing. Retrieve comprehensive details on specific items to compare options and make informed purchasing decisions.
hm.com API
Search H&M's US product catalog by keyword and instantly retrieve detailed information like prices, product images, available sizes, and real-time stock availability. Perfect for comparing items, tracking product details, or building shopping applications powered by H&M's current inventory data.
corsair.com API
Search and filter Corsair's gaming peripherals and PC components catalog by keywords, category, and product attributes like price and specs. Browse detailed product information, compare options, and easily navigate through results with sorting and pagination to find exactly what you need.
furniture.com API
Search and browse Furniture.com's product catalog by keywords, then narrow results using filters like color, material, style, type, and brand. Sort by price or ratings and navigate through results with pagination to find the perfect furniture for your needs.
screwfix.com API
Access Screwfix's full product catalog — browse category hierarchies, retrieve paginated product listings with pricing and ratings, fetch detailed product specifications, and search by keyword. Ideal for price monitoring, product research, and catalog analysis.
dhgate.com API
Search DHgate's vast marketplace to find products across all categories, view detailed information including pricing tiers, shipping options, and seller ratings, and discover flash deals. Retrieve full product details and customer reviews in one place.
Harbor Freight Tools API — Product Search · Parse