AptarGroup Products API

AptarGroup product catalog

Operations 2

GET /products AptarGroup - List Products #
GET /products/{productId} AptarGroup - Get Product #

Work with this as data

Every API here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for apis

7 MCP tools reach this
  • find_apisBrowse and filter every API in the catalog.
  • get_api_artifactsOne API's artifacts, grouped by type.
  • get_openapiThe primary OpenAPI for this API.
  • find_similar_apisAPIs that look like this one.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools →

Call it yourself

curl for this page
This API
curl "https://apis.io/api/v1/apis/aptargroup-products-api"
All apis
curl "https://apis.io/api/v1/apis?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.

A second provider on the same verified email joins the account you already have.

OpenAPI Specification

aptargroup-products-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  x-method: generated
  x-generated-from: documentation
  x-generated-by: api-evangelist-bulk-sweep-2026-05-04
  x-provenance: >-
    AUTHORED BY API EVANGELIST, NOT BY APTARGROUP. This document was written by the API Evangelist
    bulk sweep dated 2026-05-04 and was never harvested from an AptarGroup surface. Marked
    2026-09-04 by the enrichment pipeline after direct probing established that the API it describes
    does not exist: its servers[] host api.aptargroup.com is NXDOMAIN, the contact host
    www.aptargroup.com is NXDOMAIN (the live corporate host is www.aptar.com), there is no
    AptarGroup developer portal, no AptarGroup GitHub organisation, and no first-party client
    library on any package registry. Treat every operation, schema and example here as modelled,
    not as an AptarGroup contract, and do not derive further artifacts from it.
  title: AptarGroup Product Catalog Orders Products API
  description: API for the AptarGroup product catalog of dispensing, sealing, and active packaging solutions for the beauty, personal care, pharmaceutical, food, and home care markets. Enables partners to browse and integrate product data.
  version: 1.0.0
  contact:
    name: AptarGroup
    url: https://www.aptargroup.com
  license:
    name: Proprietary
servers:
- url: https://api.aptargroup.com/v1
  description: AptarGroup Product Catalog API
security:
- bearerAuth: []
tags:
- name: Products
  description: AptarGroup product catalog
paths:
  /products:
    get:
      operationId: listProducts
      summary: AptarGroup - List Products
      description: Returns a list of AptarGroup dispensing and packaging products
      tags:
      - Products
      parameters:
      - name: category
        in: query
        description: Filter by product category (dispensing, sealing, active-packaging)
        schema:
          type: string
      - name: market
        in: query
        description: Filter by target market (beauty, pharma, food, home-care)
        schema:
          type: string
      - name: sustainable
        in: query
        description: Filter to only sustainable products
        schema:
          type: boolean
      responses:
        '200':
          description: A list of products
          content:
            application/json:
              schema:
                type: object
                properties:
                  data:
                    type: array
                    items:
                      $ref: '#/components/schemas/Product'
              examples:
                ListProductsExample:
                  x-microcks-default: true
                  summary: Example product list
                  value:
                    data:
                    - productId: APTAR-PUMP-001
                      name: EcoStar Airless Pump
                      category: dispensing
                      market: beauty
                      sustainable: true
        '401':
          description: Unauthorized - invalid or missing authentication token
  /products/{productId}:
    get:
      operationId: getProduct
      summary: AptarGroup - Get Product
      description: Returns details for a specific AptarGroup product
      tags:
      - Products
      parameters:
      - name: productId
        in: path
        required: true
        description: Unique product identifier
        schema:
          type: string
      responses:
        '200':
          description: Product details
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Product'
              examples:
                GetProductExample:
                  x-microcks-default: true
                  summary: Example product detail
                  value:
                    productId: APTAR-PUMP-001
                    name: EcoStar Airless Pump
                    category: dispensing
                    market: beauty
                    description: Airless pump dispenser for skincare products
                    material: recycled-plastic
                    sustainable: true
                    sku: ECO-PUMP-50ML
        '404':
          description: Product not found
        '401':
          description: Unauthorized - invalid or missing authentication token
components:
  schemas:
    Product:
      title: Product
      description: An AptarGroup dispensing or packaging product
      type: object
      properties:
        productId:
          type: string
          description: Unique product identifier
        name:
          type: string
          description: Product name
        category:
          type: string
          description: Product category
        market:
          type: string
          description: Target market
        description:
          type: string
          description: Product description
        material:
          type: string
          description: Primary material
        sustainable:
          type: boolean
          description: Whether the product uses sustainable materials
        sku:
          type: string
          description: Stock keeping unit identifier
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: JWT