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.

Endpoint health
verified 20h ago
search_products
get_product_details
2/2 passing latest checkself-healing
Endpoints
2
Updated
20h 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.

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
20h 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/mo1005 req/min
Hobby$30/mo1,00020 req/min
Developer$100/mo5,000100 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 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 →
walmart.com API
Retrieve product data from Walmart.com including pricing, descriptions, availability, reviews, and category listings. Access real-time product information to search by keyword, look up items by ID or URL, and browse department categories.
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.
amazon.co.uk API
Access data from amazon.co.uk.
ikea.com API
Search and browse IKEA's full product catalog to find items by category, compare measurements, read customer reviews, and check real-time store availability and current deals. Discover new arrivals and best-selling products to help you shop smarter and find exactly what you need.
newegg.com API
Search Newegg's product catalog and retrieve listings, specifications, customer reviews, Q&A, category trees, and daily deals.
amazon.fr API
Scrape product data from Amazon.fr, including search results, product details, specifications, seller offers, customer reviews, and current deals.
idealo.de API
Search for products on Idealo.de and retrieve detailed information including current seller offers, price history, technical specifications, and user and expert reviews. Compare prices across sellers and access comprehensive product data to evaluate deals.
zara.com API
Shop Zara's entire catalog by browsing categories, searching for specific items, and viewing detailed product information including measurements and related products. Find nearby store locations, check real-time inventory availability, and get shipping details all in one place.