OpenAPI Specification
openapi: 3.1.0
info:
title: Lowe's Product Inventory Products API
description: The Lowe's Product API provides programmatic access to Lowe's home improvement product catalog, inventory availability, pricing, and store information. Built on Microsoft Azure API Management, the API enables partners and developers to integrate with Lowe's retail operations for ecommerce and supply chain use cases.
version: '1.0'
servers:
- url: https://apis.lowes.com
tags:
- name: Products
description: Search and retrieve product information.
paths:
/products:
get:
operationId: listProducts
summary: List products
description: Retrieves a list of products from the Lowe's catalog with filtering by category, brand, price range, and other attributes.
tags:
- Products
parameters:
- name: category
in: query
description: Filter by product category.
schema:
type: string
- name: keyword
in: query
description: Search by keyword.
schema:
type: string
responses:
'200':
description: Success
components:
securitySchemes:
bearerAuth:
type: http
scheme: bearer