Discover/Ferguson API
live

Ferguson APIferguson.com

Search Ferguson's catalog and retrieve product details including price, specs, availability, and ratings for plumbing, HVAC, and building supplies.

This API takes change requests — .
Endpoint health
verified 3d ago
get_product_details
search_products
2/2 passing latest checkself-healing
Endpoints
2
Updated
24d ago

What is the Ferguson API?

The Ferguson API provides 2 endpoints to search and retrieve product data from Ferguson.com, one of the largest plumbing, HVAC, and building supply distributors in the US. Use search_products to query the catalog and get paginated listings with brand, title, and part numbers, or call get_product_details with a Ferguson item number to pull full product data across more than 10 fields including price, description, images, and customer rating.

This call costs5 credits / call— charged only on success
Try it
Page number for pagination, starting at 1.
Search query text (e.g. 'residential plumbing', 'bathroom faucet', 'water heater').
Number of products per page. Maximum 96.
api.parse.bot/scraper/b025709a-11dc-4028-8c06-7ae55401ab38/<endpoint>
Ready to send
Fill in the parameters and hit sign in to send to see live response data here.
Call it over HTTPgrab a free API key at signup
curl -X GET 'https://api.parse.bot/scraper/b025709a-11dc-4028-8c06-7ae55401ab38/search_products?page=1&query=residential+plumbing&page_size=24' \
  -H 'X-API-Key: $PARSE_API_KEY'
Python SDK · recommended

Typed, relational, agent-ready

A generated client with real types, enums, and the links between objects — the structure a flat JSON response can't carry. Autocompletes in your editor and reads cleanly to coding agents.

  • Fully typed · autocompletes
  • Objects link to objects
  • Typed errors & pagination

Typed Python client. Set up the SDK in your uv project, then pull this API’s typed client:

uv add parse-sdk
uv run parse init
uv run parse add --marketplace ferguson-com-api

uv run parse add --marketplace pulls a pinned snapshot of this canonical API — it won’t change underneath you. To customize it, subscribe and swap to your own copy.


"""Walkthrough: Ferguson Plumbing Products API — search and drill into product details."""
from parse_apis.ferguson_com_api import Ferguson, ProductNotFound

client = Ferguson()

# Search for residential plumbing products with auto-pagination capped at 5 items.
for product in client.product_summaries.search(query="residential plumbing", limit=5):
    print(product.brand, product.title, product.part_number)

# Drill into a single product's full details.
summary = client.product_summaries.search(query="bathroom faucet", limit=1).first()
if summary:
    detail = summary.details()
    print(detail.name, detail.price, detail.currency)
    print("Specs:", len(detail.specifications), "items")

# Typed error handling: catch a not-found product.
fake = client.product_summaries.search(query="water heater", limit=1).first()
if fake:
    try:
        detail = fake.details()
        print(detail.brand, detail.availability)
    except ProductNotFound as exc:
        print(f"Product gone: {exc}")

print("exercised: product_summaries.search / details / ProductNotFound")
All endpoints · 2 totalmissing one? ·

Search for products on Ferguson.com. Returns paginated product listings with basic information including brand, title, part numbers, and image URL. Results are ordered by best match.

Input
ParamTypeDescription
pageintegerPage number for pagination, starting at 1.
queryrequiredstringSearch query text (e.g. 'residential plumbing', 'bathroom faucet', 'water heater').
page_sizeintegerNumber of products per page. Maximum 96.
Response
{
  "type": "object",
  "fields": {
    "page": "integer",
    "query": "string",
    "products": "array of product summaries with id, brand, title, part_number, item_number, manufacturer_part_number, url, image_url, and optional collection",
    "page_size": "integer",
    "total_products": "integer"
  },
  "sample": {
    "data": {
      "page": 1,
      "query": "residential plumbing",
      "products": [
        {
          "id": "7172791",
          "url": "https://www.ferguson.com/product/bradford-white-fvir-eco-defender-safety-system-40-gal.-tall-34-mbh-ultra-low-nox-atmospheric-vent-natural-gas-water-heater-burg140t6n394/7172791.html",
          "brand": "Bradford White",
          "title": "40 gal. Tall 34 MBH Ultra-Low NOx Atmospheric Vent Natural Gas Water Heater",
          "image_url": "https://i.ferg-img.com/i/fergusonprod/7172791_14155561_primary?fmt=auto&w=250",
          "collection": "FVIR Eco-Defender Safety System®",
          "item_number": "7172791",
          "part_number": "BURG140T6N394",
          "manufacturer_part_number": "URG140T6N-394"
        }
      ],
      "page_size": 24,
      "total_products": 2142
    },
    "status": "success"
  }
}

About the Ferguson API

Search the Ferguson Catalog

The search_products endpoint accepts a query string (for example, 'bathroom faucet' or 'water heater') and returns paginated product summaries. Each result includes a product id, brand, title, part_number, item_number, manufacturer_part_number, url, and image_url. Use page and page_size (up to 96 per page) to paginate through results, and check total_products to understand the full result count for a given query.

Full Product Details

The get_product_details endpoint takes a Ferguson product_id (the numeric id field returned by search_products) and returns a complete product record. Response fields include name, brand, price, currency, description, images (an array of image URLs), part_number, and a rating object with both rating and best_rating values. This is where you retrieve specification data and pricing for a specific SKU.

Part Number Coverage

Each product in the catalog exposes three distinct part number fields: part_number (Ferguson's internal number), item_number, and manufacturer_part_number. This makes it straightforward to cross-reference Ferguson SKUs against manufacturer catalogs or other distributor systems without additional lookups.

Reliability & maintenanceVerified

The Ferguson API is a managed, monitored endpoint for ferguson.com — not a raw scraper you maintain. Every endpoint is automatically health-checked on a schedule, and when ferguson.com changes and a check fails, the API is automatically queued for repair and re-verified. It is built to keep working as the site underneath it changes.

This isn't an official ferguson.com API — it's an independent, maintained REST wrapper over public data. Where the source has no official API (or only a limited one), Parse gives you a stable contract over a source that never promised one, and keeps it current. Need a new endpoint or field? You can revise it yourself in plain English and the agent rebuilds it against the live site in minutes — contributing the change back to the shared API is free.

Last verified
3d ago
Latest check
2/2 endpoints passing
Maintenance
Monitored & self-healing
Will this API break when the source site changes?+
It's built not to. Every endpoint is health-checked on a schedule with automated test probes. When the source site changes and a check fails, the API is automatically queued for repair and re-verified — that's the self-healing layer. Each API page shows when its endpoints were last verified. And because marketplace APIs are shared, any fix reaches everyone using it.
Is this an official API from the source site?+
No — Parse APIs are independent, managed REST wrappers over publicly available data. That is the point: where a site has no official API (or only a limited one), Parse gives you a maintained, monitored endpoint for that data and keeps it working as the site changes — so you get a stable contract over a source that never promised one.
Can I fix or extend this API myself if I need a new endpoint or field?+
Yes — and you don't have to wait on us. This API was generated by the Parse agent, which stays attached. Describe the change in plain English ("add an endpoint that returns reviews", "fix the price field") in the revise box on the API page or via the revise_api MCP tool, and the agent rebuilds it against the live site in minutes. Contributing the change back to the public API is free.
What happens if I call an endpoint that has an issue?+
Errors are machine-readable: a bad call returns a clean status with the list of available endpoints and a repair hint, so an agent (or you) can recover or trigger a fix instead of failing silently. Confirmed failures feed the automatic repair queue.
Common use cases
  • Build a product comparison tool for plumbing and HVAC contractors by querying multiple product types and comparing price and rating fields.
  • Populate an internal procurement catalog with Ferguson SKUs, manufacturer part numbers, and images using search_products.
  • Monitor price changes on specific Ferguson items by polling get_product_details with known product IDs.
  • Cross-reference manufacturer part numbers from Ferguson listings against other supplier systems to find alternatives.
  • Aggregate product images and descriptions for a building supply content site using the images and description fields.
  • Build a search interface for trade professionals that surfaces Ferguson item numbers and availability data.
  • Validate product catalog data by comparing Ferguson part_number and manufacturer_part_number fields against internal records.
Pricing & limitsSee full pricing →
TierPriceCredits/monthRate limit
Free$0/mo2005 req/min
Hobby$30/mo1,00020 req/min
Developer$100/mo5,000100 req/min
Team$300/mo20,000300 req/min
Company$1,000/mo100,000500 req/min

Each endpoint has a fixed posted price per successful call — most fall between 1 and 10 credits — shown on this API's page before you run it. Exceeding the rate limit returns a 429 response. Authenticate with the X-API-Key header.

Frequently asked questions
Does Ferguson have an official developer API?+
Ferguson does not publish a public developer API or API documentation for third-party access to its product catalog.
What does get_product_details return beyond what search_products provides?+
The search_products endpoint returns summary fields: id, brand, title, part_number, item_number, manufacturer_part_number, url, and image_url. The get_product_details endpoint adds price, currency, description, a full images array, and a rating object with rating and best_rating values. Detailed specifications and full product descriptions are only available through get_product_details.
Is availability or stock status returned by either endpoint?+
The get_product_details endpoint description notes availability as part of the product information it returns, though it is not listed as a discrete top-level response field in the current spec. The API covers price, rating, description, images, and part numbers. You can fork it on Parse and revise it to surface a dedicated availability or stock-level field.
Can I filter search results by brand, category, or price range?+
Currently the search_products endpoint accepts a query string, page, and page_size. Filtering by brand, category, or price range is not supported as a distinct parameter. You can fork it on Parse and revise to add filter parameters if your use case requires scoped results.
How should I handle pagination when searching a large category like 'residential plumbing'?+
The search_products response includes total_products, page, and page_size fields. Use total_products divided by page_size to determine the number of pages, then increment the page parameter to walk through results. The maximum page_size is 96 items per request.
Page content last updated . Spec covers 2 endpoints from ferguson.com.
Related APIs in EcommerceSee all →
hvacdirect.com API
Search and browse HVAC equipment from HVACDirect's catalog, viewing detailed product specifications, pricing, images, and compatible accessories all in one place. Find exactly what you need by searching product names, model numbers, or browsing by category.
grainger.com API
Search and browse Grainger's industrial supply catalog to find products across categories and subcategories, then access detailed specifications and pricing information for any item. Quickly locate the exact industrial supplies you need by exploring the full product catalog with organized categories and comprehensive product details.
mcmaster.com API
Search McMaster-Carr's industrial supply catalog to discover products by category, view detailed listings with part numbers and prices, and apply filters to find exactly what you need. Look up specific part numbers to get complete product information and pricing in seconds.
cedeo.fr API
Search for plumbing and heating products on CEDEO, view detailed product information with variants, and locate nearby agency stores. Access comprehensive product catalogs, specifications, and inventory across CEDEO's retail network.
graybar.com API
Search and discover electrical products on Graybar by name, SKU, or manufacturer part number, and view detailed specifications including pricing and availability.
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.
harborfreight.com API
Search Harbor Freight Tools products by name or category to get real-time pricing, customer reviews, brand information, and detailed product specifications. Filter results using category facets to quickly find deals and compare tools across different product lines.
fishersci.com API
Search and discover laboratory products from Fisher Scientific's catalog with real-time results and typeahead suggestions. Find exactly what you need with paginated product listings to browse their full inventory of lab supplies and equipment.