Procter & Gamble Products API

Access P&G product catalog and data.

OpenAPI Specification

procter-and-gamble-products-api-openapi.yml Raw ↑
openapi: 3.1.0
info:
  title: Procter & Gamble API Marketplace Orders Products API
  description: The Procter & Gamble API Marketplace provides access to P&G's suite of APIs for partners, suppliers, and developers. The platform enables integration with P&G's supply chain, product data, and business operations for building applications that interact with P&G systems.
  version: '1.0'
servers:
- url: https://developer.pg.com/api
tags:
- name: Products
  description: Access P&G product catalog and data.
paths:
  /products:
    get:
      operationId: listProducts
      summary: List products
      description: Retrieves a list of P&G products with details including brand, category, UPC codes, and product specifications.
      tags:
      - Products
      parameters:
      - name: brand
        in: query
        description: Filter by brand name.
        schema:
          type: string
      - name: category
        in: query
        description: Filter by product category.
        schema:
          type: string
      responses:
        '200':
          description: Success
components:
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer