Discover/Menards API
live

Menards APImenards.com

Access Menards product listings, pricing, availability, and specifications via 4 endpoints. Search by keyword, browse by category ID, or fetch full product details.

Endpoint health
verified 4d ago
search_products
get_category
get_product_details
get_departments
4/4 passing latest checkself-healing
Endpoints
4
Updated
26d ago

What is the Menards API?

The Menards API exposes 4 endpoints covering product search, category browsing, product details, and department listings across the full Menards catalog. The search_products endpoint returns paginated results of up to 40 items per page, each including title, SKU, pricing container, availability, and a direct product link. Whether you're indexing hardware inventory or tracking lumber prices, the API provides structured access to Menards' catalog without manual browsing.

Try it
Page number for pagination (1-based)
Search keyword (e.g. 'drill', 'hammer', 'lumber')
api.parse.bot/scraper/eb63af6a-74ff-4ce8-80af-8128a015b563/<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/eb63af6a-74ff-4ce8-80af-8128a015b563/search_products?page=1&query=drill' \
  -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 menards-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.

from parse_apis.menards_api import Menards, Product, ProductDetail, Department

menards = Menards()

# List all departments
for dept in menards.departments.list():
    print(dept.name, dept.id)

# Construct a department and browse its products
tools = menards.department(id="13067")
for product in tools.products(limit=5):
    print(product.title, product.sku, product.final_price, product.has_pickup)

# Search for products
for product in menards.products.search(query="hammer", limit=3):
    print(product.title, product.item_id, product.sale_price)
    # Get full product details
    detail = product.details()
    print(detail.name, detail.brand, detail.specifications)
All endpoints · 4 totalmissing one? ·

Full-text search over Menards.com product catalog. Returns up to 40 products per page with pricing, availability, and product links. Paginates via integer page number; totalItems indicates how many results match the query across all pages.

Input
ParamTypeDescription
pageintegerPage number for pagination (1-based)
queryrequiredstringSearch keyword (e.g. 'drill', 'hammer', 'lumber')
Response
{
  "type": "object",
  "fields": {
    "items": "array of product objects with title, itemId, link, image, sku, basicPriceContainer, availability",
    "totalItems": "integer total number of matching products"
  },
  "sample": {
    "data": {
      "items": [
        {
          "sku": 2419903,
          "link": "/main/tools/power-tools/power-drills-impact-drivers/north-tech-reg-18-volt-cordless-3-8-drill-kit/cd111/p-1642874352528255-c-9072.htm",
          "image": "https://cdn.menardc.com/main/items/media/ZHUHA001/ProductLarge/2419903.jpg",
          "title": "North Tech® 18-Volt Cordless 3/8\" Drill Kit",
          "itemId": "1642874352528255",
          "availability": {
            "hasPickup": true,
            "hasDelivery": true
          },
          "basicPriceContainer": {
            "listPrice": 16.99,
            "salePrice": 16.99,
            "finalPrice": {
              "finalPrice": 15.12,
              "unitOfMeasure": "each"
            },
            "rebatePrice": 1.87
          }
        }
      ],
      "totalItems": 137
    },
    "status": "success"
  }
}

About the Menards API

Endpoints and What They Return

The search_products endpoint accepts a required query string (e.g. 'drill', 'lumber', 'hammer') and an optional page integer for pagination. It returns a totalItems count and an items array where each object includes title, itemId, sku, link, image, basicPriceContainer, and availability. The get_category endpoint works similarly but takes a category_id string instead of a search term — for example '9143' for Hammers or '9072' for Power Drills — making it suitable for systematic catalog browsing by department.

Product Details and Specifications

The get_product_details endpoint accepts a url path beginning with /main/ and returns two top-level objects: product_info (Schema.org Product data including name, description, sku, brand, offers, and image URLs) and specifications (a flat key-value object for product-level attributes like Handle Length or Head Weight). This structured specification data is particularly useful when comparing products programmatically or populating a product database.

Navigating the Catalog

The get_departments endpoint requires no inputs and returns an array of departments, each with a name, url, and id. Those IDs feed directly into get_category, giving you a top-down traversal path from department to product. This makes it straightforward to enumerate all top-level categories before drilling into specific listings. Both search_products and get_category paginate at 40 items per page, so totalItems divided by 40 tells you the page count for a full crawl.

Reliability & maintenanceVerified

The Menards API is a managed, monitored endpoint for menards.com — not a raw scraper you maintain. Every endpoint is automatically health-checked on a schedule, and when menards.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 menards.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
4d ago
Latest check
4/4 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
  • Track price changes on specific SKUs using basicPriceContainer data returned by search_products.
  • Build a cross-retailer hardware price comparison tool using offers from get_product_details.
  • Enumerate an entire department's inventory by chaining get_departments with paginated get_category calls.
  • Populate a product database with structured specs like Handle Length and Head Weight from the specifications field.
  • Monitor availability status across lumber and building material categories using the availability field.
  • Index product images and metadata using image, title, and sku from category or search results.
  • Identify category IDs for targeted catalog monitoring by parsing the get_departments response.
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 Menards have an official developer API?+
Menards does not publish an official public developer API or data feed. There is no documented REST or GraphQL interface available for third-party developers on their site.
What does `basicPriceContainer` contain and does it include sale or rebate pricing?+
The basicPriceContainer field is returned as an object in both search_products and get_category results and reflects the price data shown on Menards product listings. The exact subfields depend on the product; sale pricing may be nested within it. The API does not currently expose a dedicated rebate field as a separate top-level value. You can fork it on Parse and revise to add a parsed rebate field if that level of detail is needed.
Does `get_product_details` return customer reviews or ratings?+
The endpoint returns Schema.org Product data via product_info and spec key-value pairs via specifications. Customer reviews and star ratings are not currently returned. You can fork this API on Parse and revise it to add a reviews endpoint targeting product review data.
Are there any limitations on pagination depth or category coverage?+
Both search_products and get_category return up to 40 items per page with a totalItems field to calculate total pages. Deep pagination (high page numbers on large result sets) may reflect the same limits that apply on the Menards site itself. Category coverage depends on what Menards surfaces under a given category_id; not all subcategories are directly addressable without first discovering IDs via get_departments.
Can I retrieve store-level inventory or in-store availability by location?+
The API returns an availability field in product listings, but it does not currently expose per-store stock levels or location-based inventory lookup. You can fork this API on Parse and revise it to add a store-specific availability endpoint if granular location data is required.
Page content last updated . Spec covers 4 endpoints from menards.com.
Related APIs in EcommerceSee all →
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.
leroymerlin.fr API
Search and browse Leroy Merlin France's complete product catalog to find items by category, view pricing, product details, and compare offerings from Leroy Merlin and their online partners. Access real-time product information including names, IDs, URLs, and seller details to help you discover and evaluate home improvement and DIY products.
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.
hagebau.de API
Browse Hagebau's complete product catalog, search across thousands of items by category and brand, and check real-time store availability for building materials and home improvement products. Access detailed product specifications, filter by brand, and discover what's in stock at your nearest location.
manomano.fr API
Search ManoMano.fr products by keyword and browse listings with prices, brands, images, and product URLs.
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.
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.
miniaturemarket.com API
Search for miniature and tabletop gaming products, browse items by category, and access detailed product information including customer reviews and current deals from Miniature Market. Find exactly what you need with comprehensive product listings and real-time pricing data to make informed purchasing decisions.