> For clean Markdown of any page, append .md to the page URL.
> For a complete documentation index, see https://developer-stage.shipbob.dev/llms.txt.
> For AI client integration (Claude Code, Cursor, etc.), connect to the MCP server at https://developer-stage.shipbob.dev/_mcp/server.

# Get Products

GET https://sandbox-api.shipbob.com/2026-01/product

Retrieves a paginated list of products. Supports filtering by search term, barcode, SKU, status, and other criteria.

Reference: https://developer-stage.shipbob.dev/api/products/get-products

## OpenAPI Specification

```yaml
openapi: 3.1.0
info:
  title: api-2026-01
  version: 1.0.0
paths:
  /2026-01/product:
    get:
      operationId: get-products
      summary: Get Products
      description: >-
        Retrieves a paginated list of products. Supports filtering by search
        term, barcode, SKU, status, and other criteria.
      tags:
        - subpackage_products
      parameters:
        - name: Search
          in: query
          description: |
            Search Products by name, sku, inventory id or product Id.
          required: false
          schema:
            $ref: '#/components/schemas/Products.Get.Api.V5.Product.Search.String'
        - name: Barcode
          in: query
          description: |
            Barcode Associated with variant
          required: false
          schema:
            $ref: '#/components/schemas/Products.Get.Api.V5.Product.Barcode.Int'
        - name: Barcodes
          in: query
          description: |
            Barcodes Associated with variant
          required: false
          schema:
            $ref: >-
              #/components/schemas/Products.Get.Api.V5.Product.Barcodes.List.String
        - name: CategoryIds
          in: query
          description: |
            List of Category Ids associated with product
          required: false
          schema:
            $ref: >-
              #/components/schemas/Products.Get.Api.V5.Product.CategoryIds.List.Int
        - name: ChannelIds
          in: query
          description: |
            Looks for Products variants by their channel IDs
          required: false
          schema:
            $ref: >-
              #/components/schemas/Products.Get.Api.V5.Product.ChannelIds.List.Int
        - name: HasDigitalVariants
          in: query
          description: |
            Looks for Products with/without digital variants
          required: false
          schema:
            $ref: >-
              #/components/schemas/Products.Get.Api.V5.Product.HasDigitalVariants.Boolean
        - name: HasVariants
          in: query
          description: |
            Looks for Products with/without variants
          required: false
          schema:
            $ref: >-
              #/components/schemas/Products.Get.Api.V5.Product.HasVariants.Boolean
        - name: InventoryId
          in: query
          description: |
            Looks for variants by its associated inventory id
          required: false
          schema:
            $ref: >-
              #/components/schemas/Products.Get.Api.V5.Product.InventoryId.List.Int
        - name: IsInventorySyncEnabled
          in: query
          description: |
            Looks for Products variants by their IsInventorySyncEnabled is true
          required: false
          schema:
            $ref: >-
              #/components/schemas/202601ProductGetParametersIsInventorySyncEnabled
        - name: LastUpdatedTimestamp
          in: query
          description: |
            Looks for Products that have been updated since the given date
          required: false
          schema:
            $ref: >-
              #/components/schemas/Products.Get.Api.V5.Product.LastUpdatedTimestamp.DateTime
        - name: LegacyIds
          in: query
          description: |
            Looks for Products with by Legacy Product Id(s)
          required: false
          schema:
            $ref: >-
              #/components/schemas/Products.Get.Api.V5.Product.LegacyIds.List.Int
        - name: Name
          in: query
          description: |
            Looks for Products/Variants by name
          required: false
          schema:
            $ref: '#/components/schemas/Products.Get.Api.V5.Product.Name.String'
        - name: OnHand
          in: query
          description: |
            Looks for Products with inventory
          required: false
          schema:
            $ref: '#/components/schemas/Products.Get.Api.V5.Product.OnHand.Integer'
        - name: PlatformIds
          in: query
          description: |
            Looks for Products variants by their external Platform IDs
          required: false
          schema:
            $ref: >-
              #/components/schemas/Products.Get.Api.V5.Product.PlatformIds.List.String
        - name: ProductId
          in: query
          description: |
            Looks for Products with an assigned Id
          required: false
          schema:
            $ref: >-
              #/components/schemas/Products.Get.Api.V5.Product.ProductId.List.Int
        - name: ProductType
          in: query
          description: |
            Looks for Products by type
          required: false
          schema:
            $ref: >-
              #/components/schemas/Products.Get.Api.V5.Product.ProductType.Integer
        - name: ReviewsPending
          in: query
          description: |
            Looks for Products by ReviewsPending
          required: false
          schema:
            $ref: >-
              #/components/schemas/Products.Get.Api.V5.Product.ReviewsPending.List.ReviewsPendingType
        - name: SalesChannel
          in: query
          description: |
            Looks for Products variants assigned to a platform/sales channel 
          required: false
          schema:
            $ref: >-
              #/components/schemas/Products.Get.Api.V5.Product.SalesChannel.List.String
        - name: SellerSKU
          in: query
          description: |
            Looks for Products that match the provided Seller query
          required: false
          schema:
            $ref: '#/components/schemas/Products.Get.Api.V5.Product.SellerSKU.String'
        - name: SKU
          in: query
          description: |
            Looks for Products that match the provided Sku query
          required: false
          schema:
            $ref: '#/components/schemas/Products.Get.Api.V5.Product.SKU.String'
        - name: TaxonomyIds
          in: query
          description: >
            Looks for Products variants by their taxonomy id or any descendants
            of the taxonomies sent separated by comma
          required: false
          schema:
            $ref: >-
              #/components/schemas/Products.Get.Api.V5.Product.TaxonomyIds.List.Int
        - name: VariantId
          in: query
          description: |
            Looks for products that contain a variant with the given ID
          required: false
          schema:
            $ref: >-
              #/components/schemas/Products.Get.Api.V5.Product.VariantId.List.Int
        - name: VariantStatus
          in: query
          description: |
            Looks for Products with variants that contain provided status
          required: false
          schema:
            $ref: >-
              #/components/schemas/Products.Get.Api.V5.Product.VariantStatus.String
        - name: PageSize
          in: query
          description: |
            1-250
          required: false
          schema:
            $ref: '#/components/schemas/Products.Get.Api.V5.Product.PageSize.Int'
        - name: SortBy
          in: query
          description: |
            Id, Name, Category, TotalOnHandQty
          required: false
          schema:
            $ref: '#/components/schemas/Products.Get.Api.V5.Product.SortBy.String'
        - name: SortOrder
          in: query
          description: |
            ASC,DESC
          required: false
          schema:
            $ref: '#/components/schemas/Products.Get.Api.V5.Product.SortOrder.String'
        - name: Authorization
          in: header
          description: Authentication using Personal Access Token (PAT) token
          required: true
          schema:
            type: string
      responses:
        '200':
          description: Success
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Products.ProductViewModelV5PagedResponse'
        '400':
          description: Bad Request
          content:
            application/json:
              schema:
                $ref: >-
                  #/components/schemas/Products.Get.Api.V5.Product.Bad.Request.Object
        '404':
          description: Not Found
          content:
            application/json:
              schema:
                $ref: >-
                  #/components/schemas/Products.Get.Api.V5.Product.Not.Found.OneOf.ProblemDetails.HttpValidationProblemDetails
servers:
  - url: https://sandbox-api.shipbob.com
    description: https://sandbox-api.shipbob.com
components:
  schemas:
    Products.Get.Api.V5.Product.Search.String:
      type: string
      title: Products.Get.Api.V5.Product.Search.String
    Products.Get.Api.V5.Product.Barcode.Int:
      type: integer
      description: Barcode Associated with variant
      title: Products.Get.Api.V5.Product.Barcode.Int
    Products.Get.Api.V5.Product.Barcodes.List.String:
      type: array
      items:
        type: string
      description: Barcodes Associated with variant
      title: Products.Get.Api.V5.Product.Barcodes.List.String
    Products.Get.Api.V5.Product.CategoryIds.List.Int:
      type: array
      items:
        type: integer
      description: List of Category Ids associated with product
      title: Products.Get.Api.V5.Product.CategoryIds.List.Int
    Products.Get.Api.V5.Product.ChannelIds.List.Int:
      type: array
      items:
        type: integer
      description: Looks for Products variants by their channel IDs
      title: Products.Get.Api.V5.Product.ChannelIds.List.Int
    Products.Get.Api.V5.Product.HasDigitalVariants.Boolean:
      type: boolean
      description: Looks for Products with/without digital variants
      title: Products.Get.Api.V5.Product.HasDigitalVariants.Boolean
    Products.Get.Api.V5.Product.HasVariants.Boolean:
      type: boolean
      description: Looks for Products with/without variants
      title: Products.Get.Api.V5.Product.HasVariants.Boolean
    Products.Get.Api.V5.Product.InventoryId.List.Int:
      type: array
      items:
        type: integer
      description: Looks for variants by its associated inventory id
      title: Products.Get.Api.V5.Product.InventoryId.List.Int
    202601ProductGetParametersIsInventorySyncEnabled:
      type: object
      properties: {}
      title: 202601ProductGetParametersIsInventorySyncEnabled
    Products.Get.Api.V5.Product.LastUpdatedTimestamp.DateTime:
      type: string
      format: date-time
      description: Looks for Products that have been updated since the given date
      title: Products.Get.Api.V5.Product.LastUpdatedTimestamp.DateTime
    Products.Get.Api.V5.Product.LegacyIds.List.Int:
      type: array
      items:
        type: integer
      description: Looks for Products with by Legacy Product Id(s)
      title: Products.Get.Api.V5.Product.LegacyIds.List.Int
    Products.Get.Api.V5.Product.Name.String:
      type: string
      description: Looks for Products/Variants by name
      title: Products.Get.Api.V5.Product.Name.String
    Products.Get.Api.V5.Product.OnHand.Integer:
      type: integer
      description: Looks for Products with inventory
      title: Products.Get.Api.V5.Product.OnHand.Integer
    Products.Get.Api.V5.Product.PlatformIds.List.String:
      type: array
      items:
        type: string
      description: Looks for Products variants by their external Platform IDs
      title: Products.Get.Api.V5.Product.PlatformIds.List.String
    Products.Get.Api.V5.Product.ProductId.List.Int:
      type: array
      items:
        type: integer
      description: Looks for Products with an assigned Id
      title: Products.Get.Api.V5.Product.ProductId.List.Int
    Products.Get.Api.V5.Product.ProductType.Integer:
      type: integer
      description: Looks for Products by type
      title: Products.Get.Api.V5.Product.ProductType.Integer
    Products.Get.Api.V5.Product.ReviewsPending.List.ReviewsPendingType:
      type: array
      items:
        type: string
      description: Looks for Products by ReviewsPending
      title: Products.Get.Api.V5.Product.ReviewsPending.List.ReviewsPendingType
    Products.Get.Api.V5.Product.SalesChannel.List.String:
      type: array
      items:
        type: string
      description: 'Looks for Products variants assigned to a platform/sales channel '
      title: Products.Get.Api.V5.Product.SalesChannel.List.String
    Products.Get.Api.V5.Product.SellerSKU.String:
      type: string
      description: Looks for Products that match the provided Seller query
      title: Products.Get.Api.V5.Product.SellerSKU.String
    Products.Get.Api.V5.Product.SKU.String:
      type: string
      description: Looks for Products that match the provided Sku query
      title: Products.Get.Api.V5.Product.SKU.String
    Products.Get.Api.V5.Product.TaxonomyIds.List.Int:
      type: array
      items:
        type: integer
      description: >-
        Looks for Products variants by their taxonomy id or any descendants of
        the taxonomies sent separated by comma
      title: Products.Get.Api.V5.Product.TaxonomyIds.List.Int
    Products.Get.Api.V5.Product.VariantId.List.Int:
      type: array
      items:
        type: integer
      description: Looks for products that contain a variant with the given ID
      title: Products.Get.Api.V5.Product.VariantId.List.Int
    Products.Get.Api.V5.Product.VariantStatus.String:
      type: string
      description: Looks for Products with variants that contain provided status
      title: Products.Get.Api.V5.Product.VariantStatus.String
    Products.Get.Api.V5.Product.PageSize.Int:
      type: integer
      title: Products.Get.Api.V5.Product.PageSize.Int
    Products.Get.Api.V5.Product.SortBy.String:
      type: string
      title: Products.Get.Api.V5.Product.SortBy.String
    Products.Get.Api.V5.Product.SortOrder.String:
      type: string
      title: Products.Get.Api.V5.Product.SortOrder.String
    Products.TaxonomyInformationViewModel:
      type: object
      properties:
        id:
          type: integer
          description: Unique identifier for the taxonomy
        name:
          type: string
          description: Name of this taxonomy category
        parent_id:
          type: integer
          description: ID of the parent category in the taxonomy hierarchy
        parent_name:
          type: string
          description: Name of the parent category in the taxonomy hierarchy
        path:
          type: string
          description: >-
            Full hierarchical path of the taxonomy category (e.g., 'Electronics
            > Computers > Laptops')
      title: Products.TaxonomyInformationViewModel
    Products.AdditionalHazmatAttributesViewModel:
      type: object
      properties:
        charge_state_percentage:
          type: number
          format: double
        container_metal:
          type: boolean
        container_type:
          type: string
        lithium_battery_packaging:
          type: string
        lithium_battery_type:
          type: string
        magnet:
          type: boolean
        net_volume:
          type: number
          format: double
        net_weight:
          type: number
          format: double
      title: Products.AdditionalHazmatAttributesViewModel
    Products.AssociatedBundlesViewModel:
      type: object
      properties:
        product_id:
          type: integer
          format: int64
        product_name:
          type: string
        quantity:
          type: integer
        variant_id:
          type: integer
          format: int64
        variant_sku:
          type: string
      title: Products.AssociatedBundlesViewModel
    Products.BundleDefinitionViewModel:
      type: object
      properties:
        product_id:
          type: integer
          format: int64
        quantity:
          type: integer
        variant_id:
          type: integer
          format: int64
        variant_name:
          type: string
        variant_sku:
          type: string
      title: Products.BundleDefinitionViewModel
    Products.CustomsViewModel:
      type: object
      properties:
        country_code_of_origin:
          type: string
          description: >-
            ISO 3166-1 alpha-2 country code where the product was manufactured
            (e.g., 'US', 'CN', 'MX')
        currency:
          type: string
          description: >-
            ISO 4217 currency code for the declared value (e.g., 'USD', 'EUR',
            'GBP')
        description:
          type: string
          description: Product description for customs documentation
        hs_tariff_code:
          type: string
          description: >-
            Harmonized System tariff code used for international customs
            classification (6-10 digits)
        is321_eligible:
          type: boolean
          description: >-
            Flag indicating eligibility for Section 321 de minimis exemption
            (imports under $800 to US)
        value:
          type: integer
          description: Declared customs value of the product for international shipping
      title: Products.CustomsViewModel
    Products.DimensionViewModel:
      type: object
      properties:
        height:
          type: number
          format: double
          description: Height of the product
        is_locked:
          type: boolean
          description: >-
            Flag indicating whether dimensions are locked and cannot be
            automatically recalculated by the system
        length:
          type: number
          format: double
          description: Length of the product
        source:
          type: string
          description: Source of the dimension data (e.g., 'User', 'System', 'Warehouse')
        unit:
          type: string
          description: Unit of measurement for dimensions (e.g., 'in', 'cm')
        width:
          type: number
          format: double
          description: Width of the product
      title: Products.DimensionViewModel
    Products.SerialScanViewModel:
      type: object
      properties:
        exact_character_length:
          type: integer
        is_enabled:
          type: boolean
        prefix:
          type: string
        suffix:
          type: string
      title: Products.SerialScanViewModel
    Products.FulfillmentSettingsViewModel:
      type: object
      properties:
        dangerous_goods:
          type: boolean
          description: >-
            Flag indicating whether the product is classified as dangerous goods
            (hazmat) requiring special handling
        is_bpm_parcel:
          type: boolean
          description: >-
            Flag indicating whether this product qualifies for Business Parcel
            Manager (BPM) parcel shipping
        is_case_pick:
          type: boolean
          description: >-
            Flag indicating whether this product should be picked by the case
            rather than individual units
        msds_url:
          type: string
          description: URL to the Material Safety Data Sheet (MSDS) for hazardous materials
        requires_prop65:
          type: boolean
          description: >-
            Flag indicating California Proposition 65 warning label requirement
            for products containing chemicals known to cause cancer or
            reproductive harm
        serial_scan:
          $ref: '#/components/schemas/Products.SerialScanViewModel'
          description: Serial number scanning configuration for tracking individual units
      title: Products.FulfillmentSettingsViewModel
    Products.InventoryViewModel:
      type: object
      properties:
        inventory_id:
          type: integer
        on_hand_qty:
          type: integer
      title: Products.InventoryViewModel
    Products.LotInformationViewModel:
      type: object
      properties:
        is_lot:
          type: boolean
        minimum_shelf_life_days:
          type: integer
      title: Products.LotInformationViewModel
    Products.MergedChildrenViewModel:
      type: object
      properties:
        channel_ids:
          type: array
          items:
            type: integer
            format: int64
        completed_at:
          type: string
          format: date-time
        inventory_id:
          type: integer
          format: int64
        variant_id:
          type: integer
          format: int64
        variant_name:
          type: string
      title: Products.MergedChildrenViewModel
    Products.EnumViewModel:
      type: object
      properties:
        id:
          type: integer
          format: int64
        name:
          type: string
      title: Products.EnumViewModel
    Products.ReturnPreferencesViewModel:
      type: object
      properties:
        backup_action:
          $ref: '#/components/schemas/Products.EnumViewModel'
          description: Backup action to take if primary action cannot be completed
        instructions:
          type: string
          description: Special instructions for handling returned items
        primary_action:
          $ref: '#/components/schemas/Products.EnumViewModel'
          description: >-
            Primary action to take when product is returned by customer (e.g.,
            'Restock', 'Dispose', 'Return to Sender')
        return_to_sender_backup_action:
          $ref: '#/components/schemas/Products.EnumViewModel'
          description: >-
            Backup action for undeliverable packages if primary action cannot be
            completed
        return_to_sender_primary_action:
          $ref: '#/components/schemas/Products.EnumViewModel'
          description: >-
            Primary action for undeliverable packages that are returned to
            sender
      title: Products.ReturnPreferencesViewModel
    Products.WeightViewModel:
      type: object
      properties:
        unit:
          type: string
          description: Unit of measurement for weight (e.g., 'lb', 'oz', 'kg', 'g')
        weight:
          type: number
          format: double
          description: Weight value of the product
      title: Products.WeightViewModel
    Products.BarcodeViewModel:
      type: object
      properties:
        sticker_url:
          type: string
          description: URL to download or view a printable barcode sticker
        value:
          type: string
          description: The barcode value (e.g., UPC, EAN, GTIN, or other barcode format)
      title: Products.BarcodeViewModel
    Products.ChannelMetadataViewModel:
      type: object
      properties:
        channel_id:
          type: integer
          format: int64
        channel_name:
          type: string
        currency:
          type: string
        id:
          type: integer
          format: int64
        is_inventory_sync_enabled:
          type: boolean
        legacy_product_id:
          type: integer
          format: int64
        platform:
          type: string
        platform_identifier:
          type: string
        platform_inventory_item_id:
          type: string
        price:
          type: number
          format: double
        seller_sku:
          type: string
      title: Products.ChannelMetadataViewModel
    Products.AmazonChannelMetadataViewModel:
      type: object
      properties:
        channel_id:
          type: integer
          format: int64
        channel_name:
          type: string
        currency:
          type: string
        id:
          type: integer
          format: int64
        is_inventory_sync_enabled:
          type: boolean
        legacy_product_id:
          type: integer
          format: int64
        platform:
          type: string
        platform_identifier:
          type: string
        platform_inventory_item_id:
          type: string
        price:
          type: number
          format: double
        seller_sku:
          type: string
        asin:
          type: string
        fnsku:
          type: string
        fulfillment_channel:
          type: string
      title: Products.AmazonChannelMetadataViewModel
    Products.BigCommerceChannelMetadataViewModel:
      type: object
      properties:
        channel_id:
          type: integer
          format: int64
        channel_name:
          type: string
        currency:
          type: string
        id:
          type: integer
          format: int64
        is_inventory_sync_enabled:
          type: boolean
        legacy_product_id:
          type: integer
          format: int64
        platform:
          type: string
        platform_identifier:
          type: string
        platform_inventory_item_id:
          type: string
        price:
          type: number
          format: double
        seller_sku:
          type: string
        platform_product_id:
          type: integer
          format: int64
        platform_variant_id:
          type: integer
          format: int64
      title: Products.BigCommerceChannelMetadataViewModel
    Products.ShopifyChannelMetadataViewModel:
      type: object
      properties:
        channel_id:
          type: integer
          format: int64
        channel_name:
          type: string
        currency:
          type: string
        id:
          type: integer
          format: int64
        is_inventory_sync_enabled:
          type: boolean
        legacy_product_id:
          type: integer
          format: int64
        platform:
          type: string
        platform_identifier:
          type: string
        platform_inventory_item_id:
          type: string
        price:
          type: number
          format: double
        seller_sku:
          type: string
      title: Products.ShopifyChannelMetadataViewModel
    ProductsVariantViewModelV5ChannelMetadataItems:
      oneOf:
        - $ref: '#/components/schemas/Products.ChannelMetadataViewModel'
        - $ref: '#/components/schemas/Products.AmazonChannelMetadataViewModel'
        - $ref: '#/components/schemas/Products.BigCommerceChannelMetadataViewModel'
        - $ref: '#/components/schemas/Products.ShopifyChannelMetadataViewModel'
      title: ProductsVariantViewModelV5ChannelMetadataItems
    Products.VariantViewModelV5:
      type: object
      properties:
        additional_hazmat_attributes:
          $ref: '#/components/schemas/Products.AdditionalHazmatAttributesViewModel'
          description: >-
            Additional hazardous materials attributes for lithium batteries and
            dangerous goods
        associated_bundles:
          type: array
          items:
            $ref: '#/components/schemas/Products.AssociatedBundlesViewModel'
          description: List of bundle products that include this variant as a component
        bundle_definition:
          type: array
          items:
            $ref: '#/components/schemas/Products.BundleDefinitionViewModel'
          description: >-
            If this variant is a bundle, defines which variants and quantities
            make up the bundle
        created_on:
          type: string
          format: date-time
          description: Timestamp when the variant was created
        customs:
          $ref: '#/components/schemas/Products.CustomsViewModel'
          description: >-
            Customs and international shipping information (tariff codes,
            country of origin, declared value)
        dimension:
          $ref: '#/components/schemas/Products.DimensionViewModel'
          description: Physical dimensions of the variant (length, width, height)
        fulfillment_settings:
          $ref: '#/components/schemas/Products.FulfillmentSettingsViewModel'
          description: >-
            Fulfillment-specific settings (Prop 65, dangerous goods, serial
            scanning, case pick)
        gtin:
          type: string
          description: Global Trade Item Number - standardized product identifier
        id:
          type: integer
          format: int64
          description: Unique identifier for the variant
        inventory:
          $ref: '#/components/schemas/Products.InventoryViewModel'
          description: Current inventory information including on-hand quantity
        is_digital:
          type: boolean
          description: >-
            Flag indicating whether this is a digital product (no physical
            fulfillment)
        is_image_uploaded:
          type: boolean
          description: >-
            Flag indicating whether a product image has been uploaded for this
            variant
        lot_information:
          $ref: '#/components/schemas/Products.LotInformationViewModel'
          description: >-
            Lot tracking settings including whether lot tracking is enabled and
            minimum shelf life requirements
        merge_children:
          type: array
          items:
            $ref: '#/components/schemas/Products.MergedChildrenViewModel'
          description: List of variants that have been merged into this variant
        name:
          type: string
          description: Variant name or descriptor
        packaging_material_type:
          $ref: '#/components/schemas/Products.EnumViewModel'
          description: Type of packaging material used for this variant (ID and name)
        packaging_requirement:
          $ref: '#/components/schemas/Products.EnumViewModel'
          description: Special packaging requirements for this variant (ID and name)
        return_preferences:
          $ref: '#/components/schemas/Products.ReturnPreferencesViewModel'
          description: >-
            Customer return handling preferences including primary and backup
            actions
        reviews_pending:
          type: array
          items:
            type: string
          description: >-
            List of pending review types for this variant (e.g., compliance
            checks, quality reviews)
        sku:
          type: string
          description: >-
            Stock Keeping Unit - unique identifier for the variant used in
            inventory management
        status:
          type: string
          description: Current status of the variant (e.g., 'Active', 'Inactive')
        upc:
          type: string
          description: Universal Product Code - 12-digit barcode identifier
        updated_on:
          type: string
          format: date-time
          description: Timestamp when the variant was last updated
        weight:
          $ref: '#/components/schemas/Products.WeightViewModel'
          description: Weight of the variant including unit of measure
        barcodes:
          type: array
          items:
            $ref: '#/components/schemas/Products.BarcodeViewModel'
          description: List of barcodes associated with this variant (UPC, EAN, etc.)
        channel_metadata:
          type: array
          items:
            $ref: >-
              #/components/schemas/ProductsVariantViewModelV5ChannelMetadataItems
          description: >-
            Platform-specific metadata for sales channels (e.g., Amazon ASIN,
            Shopify product IDs)
      title: Products.VariantViewModelV5
    Products.ComplianceViewModel:
      type: object
      properties:
        category:
          type: array
          items:
            type: string
        reasons:
          type: array
          items:
            type: string
        status:
          type: string
      title: Products.ComplianceViewModel
    Products.VariantInternalViewModelV5:
      type: object
      properties:
        additional_hazmat_attributes:
          $ref: '#/components/schemas/Products.AdditionalHazmatAttributesViewModel'
          description: >-
            Additional hazardous materials attributes for lithium batteries and
            dangerous goods
        associated_bundles:
          type: array
          items:
            $ref: '#/components/schemas/Products.AssociatedBundlesViewModel'
          description: List of bundle products that include this variant as a component
        bundle_definition:
          type: array
          items:
            $ref: '#/components/schemas/Products.BundleDefinitionViewModel'
          description: >-
            If this variant is a bundle, defines which variants and quantities
            make up the bundle
        created_on:
          type: string
          format: date-time
          description: Timestamp when the variant was created
        customs:
          $ref: '#/components/schemas/Products.CustomsViewModel'
          description: >-
            Customs and international shipping information (tariff codes,
            country of origin, declared value)
        dimension:
          $ref: '#/components/schemas/Products.DimensionViewModel'
          description: Physical dimensions of the variant (length, width, height)
        fulfillment_settings:
          $ref: '#/components/schemas/Products.FulfillmentSettingsViewModel'
          description: >-
            Fulfillment-specific settings (Prop 65, dangerous goods, serial
            scanning, case pick)
        gtin:
          type: string
          description: Global Trade Item Number - standardized product identifier
        id:
          type: integer
          format: int64
          description: Unique identifier for the variant
        inventory:
          $ref: '#/components/schemas/Products.InventoryViewModel'
          description: Current inventory information including on-hand quantity
        is_digital:
          type: boolean
          description: >-
            Flag indicating whether this is a digital product (no physical
            fulfillment)
        is_image_uploaded:
          type: boolean
          description: >-
            Flag indicating whether a product image has been uploaded for this
            variant
        lot_information:
          $ref: '#/components/schemas/Products.LotInformationViewModel'
          description: >-
            Lot tracking settings including whether lot tracking is enabled and
            minimum shelf life requirements
        merge_children:
          type: array
          items:
            $ref: '#/components/schemas/Products.MergedChildrenViewModel'
          description: List of variants that have been merged into this variant
        name:
          type: string
          description: Variant name or descriptor
        packaging_material_type:
          $ref: '#/components/schemas/Products.EnumViewModel'
          description: Type of packaging material used for this variant (ID and name)
        packaging_requirement:
          $ref: '#/components/schemas/Products.EnumViewModel'
          description: Special packaging requirements for this variant (ID and name)
        return_preferences:
          $ref: '#/components/schemas/Products.ReturnPreferencesViewModel'
          description: >-
            Customer return handling preferences including primary and backup
            actions
        reviews_pending:
          type: array
          items:
            type: string
          description: >-
            List of pending review types for this variant (e.g., compliance
            checks, quality reviews)
        sku:
          type: string
          description: >-
            Stock Keeping Unit - unique identifier for the variant used in
            inventory management
        status:
          type: string
          description: Current status of the variant (e.g., 'Active', 'Inactive')
        upc:
          type: string
          description: Universal Product Code - 12-digit barcode identifier
        updated_on:
          type: string
          format: date-time
          description: Timestamp when the variant was last updated
        weight:
          $ref: '#/components/schemas/Products.WeightViewModel'
          description: Weight of the variant including unit of measure
        barcodes:
          type: array
          items:
            $ref: '#/components/schemas/Products.BarcodeViewModel'
          description: List of barcodes associated with this variant (UPC, EAN, etc.)
        channel_metadata:
          type: array
          items:
            $ref: >-
              #/components/schemas/ProductsVariantViewModelV5ChannelMetadataItems
          description: >-
            Platform-specific metadata for sales channels (e.g., Amazon ASIN,
            Shopify product IDs)
        compliance:
          $ref: '#/components/schemas/Products.ComplianceViewModel'
      title: Products.VariantInternalViewModelV5
    ProductsProductViewModelV5VariantsItems:
      oneOf:
        - $ref: '#/components/schemas/Products.VariantViewModelV5'
        - $ref: '#/components/schemas/Products.VariantInternalViewModelV5'
      title: ProductsProductViewModelV5VariantsItems
    Products.ProductViewModelV5:
      type: object
      properties:
        created_on:
          type: string
          format: date-time
          description: Timestamp when the product was created
        id:
          type: integer
          format: int64
          description: Unique identifier for the product
        name:
          type: string
          description: Product name
        taxonomy:
          $ref: '#/components/schemas/Products.TaxonomyInformationViewModel'
          description: Product categorization information including category hierarchy
        type:
          type: string
          description: Product type (e.g., 'Regular' or 'Bundle')
        updated_on:
          type: string
          format: date-time
          description: Timestamp when the product was last updated
        user_id:
          type: integer
          format: int64
          description: ID of the user who owns this product
        variants:
          type: array
          items:
            $ref: '#/components/schemas/ProductsProductViewModelV5VariantsItems'
          description: >-
            List of variants belonging to this product. Each variant represents
            a specific SKU.
      title: Products.ProductViewModelV5
    Products.ProductViewModelV5PagedResponse:
      type: object
      properties:
        first:
          type: string
        items:
          type: array
          items:
            $ref: '#/components/schemas/Products.ProductViewModelV5'
        last:
          type: string
        next:
          type: string
        prev:
          type: string
      title: Products.ProductViewModelV5PagedResponse
    Products.Get.Api.V5.Product.Bad.Request.Object:
      type: object
      additionalProperties:
        type: array
        items:
          type: string
      title: Products.Get.Api.V5.Product.Bad.Request.Object
    Products.ProblemDetails:
      type: object
      properties:
        detail:
          type: string
        instance:
          type: string
        status:
          type: integer
        title:
          type: string
        type:
          type: string
      title: Products.ProblemDetails
    Products.HttpValidationProblemDetails:
      type: object
      properties:
        detail:
          type: string
        instance:
          type: string
        status:
          type: integer
        title:
          type: string
        type:
          type: string
        errors:
          type: object
          additionalProperties:
            type: array
            items:
              type: string
      title: Products.HttpValidationProblemDetails
    Products.Get.Api.V5.Product.Not.Found.OneOf.ProblemDetails.HttpValidationProblemDetails:
      oneOf:
        - $ref: '#/components/schemas/Products.ProblemDetails'
        - $ref: '#/components/schemas/Products.HttpValidationProblemDetails'
      title: >-
        Products.Get.Api.V5.Product.Not.Found.OneOf.ProblemDetails.HttpValidationProblemDetails
  securitySchemes:
    PAT:
      type: http
      scheme: bearer
      description: Authentication using Personal Access Token (PAT) token
    OAuth2:
      type: http
      scheme: bearer
      description: OAuth2 authentication using JWT tokens

```

## Examples



**Response**

```json
{
  "first": "string",
  "items": [
    {
      "created_on": "2019-08-24T14:15:22+00:00",
      "id": 0,
      "name": "string",
      "taxonomy": {
        "id": 0,
        "name": "string",
        "parent_id": 0,
        "parent_name": "string",
        "path": "string"
      },
      "type": "string",
      "updated_on": "2019-08-24T14:15:22+00:00",
      "user_id": 0,
      "variants": [
        {
          "barcodes": [
            {
              "sticker_url": "string",
              "value": "string"
            }
          ],
          "channel_metadata": [
            {
              "channel_id": 0,
              "channel_name": "string",
              "currency": "string",
              "id": 0,
              "is_inventory_sync_enabled": true,
              "legacy_product_id": 0,
              "platform": "string",
              "platform_identifier": "string",
              "platform_inventory_item_id": "string",
              "price": 0.1,
              "seller_sku": "string"
            }
          ],
          "additional_hazmat_attributes": {
            "charge_state_percentage": 0.1,
            "container_metal": true,
            "container_type": "string",
            "lithium_battery_packaging": "string",
            "lithium_battery_type": "string",
            "magnet": true,
            "net_volume": 0.1,
            "net_weight": 0.1
          },
          "associated_bundles": [
            {
              "product_id": 0,
              "product_name": "string",
              "quantity": 0,
              "variant_id": 0,
              "variant_sku": "string"
            }
          ],
          "bundle_definition": [
            {
              "product_id": 0,
              "quantity": 0,
              "variant_id": 0,
              "variant_name": "string",
              "variant_sku": "string"
            }
          ],
          "created_on": "2019-08-24T14:15:22+00:00",
          "customs": {
            "country_code_of_origin": "string",
            "currency": "string",
            "description": "string",
            "hs_tariff_code": "string",
            "is321_eligible": true,
            "value": 0
          },
          "dimension": {
            "height": 0.1,
            "is_locked": true,
            "length": 0.1,
            "source": "string",
            "unit": "string",
            "width": 0.1
          },
          "fulfillment_settings": {
            "dangerous_goods": true,
            "is_bpm_parcel": true,
            "is_case_pick": true,
            "msds_url": "string",
            "requires_prop65": true,
            "serial_scan": {
              "exact_character_length": 0,
              "is_enabled": true,
              "prefix": "string",
              "suffix": "string"
            }
          },
          "gtin": "string",
          "id": 0,
          "inventory": {
            "inventory_id": 0,
            "on_hand_qty": 0
          },
          "is_digital": true,
          "is_image_uploaded": true,
          "lot_information": {
            "is_lot": true,
            "minimum_shelf_life_days": 0
          },
          "merge_children": [
            {
              "channel_ids": [
                0
              ],
              "completed_at": "2019-08-24T14:15:22+00:00",
              "inventory_id": 0,
              "variant_id": 0,
              "variant_name": "string"
            }
          ],
          "name": "string",
          "packaging_material_type": {
            "id": 0,
            "name": "string"
          },
          "packaging_requirement": {
            "id": 0,
            "name": "string"
          },
          "return_preferences": {
            "backup_action": {
              "id": 0,
              "name": "string"
            },
            "instructions": "string",
            "primary_action": {
              "id": 0,
              "name": "string"
            },
            "return_to_sender_backup_action": {
              "id": 0,
              "name": "string"
            },
            "return_to_sender_primary_action": {
              "id": 0,
              "name": "string"
            }
          },
          "reviews_pending": [
            "string"
          ],
          "sku": "string",
          "status": "string",
          "upc": "string",
          "updated_on": "2019-08-24T14:15:22+00:00",
          "weight": {
            "unit": "string",
            "weight": 0.1
          }
        }
      ]
    }
  ],
  "last": "string",
  "next": "string",
  "prev": "string"
}
```

**SDK Code**

```python default
import requests

url = "https://sandbox-api.shipbob.com/2026-01/product"

querystring = {"Search":"string","SortBy":"string","SortOrder":"string"}

headers = {"Authorization": "Bearer <token>"}

response = requests.get(url, headers=headers, params=querystring)

print(response.json())
```

```javascript default
const url = 'https://sandbox-api.shipbob.com/2026-01/product?Search=string&SortBy=string&SortOrder=string';
const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};

try {
  const response = await fetch(url, options);
  const data = await response.json();
  console.log(data);
} catch (error) {
  console.error(error);
}
```

```go default
package main

import (
	"fmt"
	"net/http"
	"io"
)

func main() {

	url := "https://sandbox-api.shipbob.com/2026-01/product?Search=string&SortBy=string&SortOrder=string"

	req, _ := http.NewRequest("GET", url, nil)

	req.Header.Add("Authorization", "Bearer <token>")

	res, _ := http.DefaultClient.Do(req)

	defer res.Body.Close()
	body, _ := io.ReadAll(res.Body)

	fmt.Println(res)
	fmt.Println(string(body))

}
```

```ruby default
require 'uri'
require 'net/http'

url = URI("https://sandbox-api.shipbob.com/2026-01/product?Search=string&SortBy=string&SortOrder=string")

http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true

request = Net::HTTP::Get.new(url)
request["Authorization"] = 'Bearer <token>'

response = http.request(request)
puts response.read_body
```

```java default
import com.mashape.unirest.http.HttpResponse;
import com.mashape.unirest.http.Unirest;

HttpResponse<String> response = Unirest.get("https://sandbox-api.shipbob.com/2026-01/product?Search=string&SortBy=string&SortOrder=string")
  .header("Authorization", "Bearer <token>")
  .asString();
```

```php default
<?php
require_once('vendor/autoload.php');

$client = new \GuzzleHttp\Client();

$response = $client->request('GET', 'https://sandbox-api.shipbob.com/2026-01/product?Search=string&SortBy=string&SortOrder=string', [
  'headers' => [
    'Authorization' => 'Bearer <token>',
  ],
]);

echo $response->getBody();
```

```csharp default
using RestSharp;

var client = new RestClient("https://sandbox-api.shipbob.com/2026-01/product?Search=string&SortBy=string&SortOrder=string");
var request = new RestRequest(Method.GET);
request.AddHeader("Authorization", "Bearer <token>");
IRestResponse response = client.Execute(request);
```

```swift default
import Foundation

let headers = ["Authorization": "Bearer <token>"]

let request = NSMutableURLRequest(url: NSURL(string: "https://sandbox-api.shipbob.com/2026-01/product?Search=string&SortBy=string&SortOrder=string")! as URL,
                                        cachePolicy: .useProtocolCachePolicy,
                                    timeoutInterval: 10.0)
request.httpMethod = "GET"
request.allHTTPHeaderFields = headers

let session = URLSession.shared
let dataTask = session.dataTask(with: request as URLRequest, completionHandler: { (data, response, error) -> Void in
  if (error != nil) {
    print(error as Any)
  } else {
    let httpResponse = response as? HTTPURLResponse
    print(httpResponse)
  }
})

dataTask.resume()
```