> ## Documentation Index
> Fetch the complete documentation index at: https://developers.criteo.com/llms.txt
> Use this file to discover all available pages before exploring further.

# /2026-01/retail-media/retailers/{retailerId}/cpc-min-bids

> Get overall and individual minimum bid amount for given retailer id and sku id list.



## OpenAPI

````yaml https://api.criteo.com/2026-01/retailmedia/open-api-specifications.json post /2026-01/retail-media/retailers/{retailerId}/cpc-min-bids
openapi: 3.0.1
info:
  title: Criteo API
  description: Criteo API - RetailMedia
  version: 2026-01
servers:
  - url: https://api.criteo.com
security:
  - oauth: []
tags:
  - name: Accounts
  - name: Analytics
  - name: Audience
  - name: Balance
  - name: Billing
  - name: Campaign
  - name: Gateway
paths:
  /2026-01/retail-media/retailers/{retailerId}/cpc-min-bids:
    post:
      tags:
        - Campaign
      summary: /2026-01/retail-media/retailers/{retailerId}/cpc-min-bids
      description: >-
        Get overall and individual minimum bid amount for given retailer id and
        sku id list.
      operationId: GetCpcMinBidsBySkuIdsV1
      parameters:
        - name: retailerId
          in: path
          description: Retailer Id.
          required: true
          schema:
            type: string
            format: int32
      requestBody:
        description: Cpc minimum bid amount request object.
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/ValueResourceInputCpcMinBidsRequest'
        required: true
        x-bodyName: cpcMinBidsRequest
      responses:
        '200':
          description: Success
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ValueResourceOutcomeCpcMinBidsResponse'
      security:
        - oauth:
            - RetailMedia_Campaign_Manage
components:
  schemas:
    ValueResourceInputCpcMinBidsRequest:
      type: object
      properties:
        data:
          $ref: '#/components/schemas/ValueResourceCpcMinBidsRequest'
      additionalProperties: false
      description: >-
        A top-level object that encapsulates a Criteo API request for a single
        value objects.
    ValueResourceOutcomeCpcMinBidsResponse:
      type: object
      properties:
        data:
          $ref: '#/components/schemas/ValueResourceCpcMinBidsResponse'
        errors:
          type: array
          items:
            $ref: '#/components/schemas/SdkApiRestCommonProblem'
          description: Errors that occured during this call.
          nullable: true
          readOnly: true
        warnings:
          type: array
          items:
            $ref: '#/components/schemas/SdkApiRestCommonProblem'
          description: Warnings that occured during this call.
          nullable: true
          readOnly: true
      additionalProperties: false
      description: >-
        A top-level object that encapsulates a Criteo API response for a single
        value object.
    ValueResourceCpcMinBidsRequest:
      type: object
      properties:
        attributes:
          $ref: '#/components/schemas/CpcMinBidsRequest'
        type:
          type: string
          description: Type of the resource.
          nullable: true
      additionalProperties: false
      description: A value resource exposed by the API.
    ValueResourceCpcMinBidsResponse:
      type: object
      properties:
        attributes:
          $ref: '#/components/schemas/CpcMinBidsResponse'
        type:
          type: string
          description: Type of the resource.
          nullable: true
      additionalProperties: false
      description: A value resource exposed by the API.
      nullable: true
    SdkApiRestCommonProblem:
      type: object
      properties:
        code:
          type: string
          description: A machine-readable error code, expressed as a string value.
          nullable: true
        detail:
          type: string
          description: >-
            A human-readable explanation specific to this occurrence of the
            problem.
          nullable: true
        instance:
          type: string
          description: A URI that identifies the specific occurrence of the problem.
          nullable: true
        source:
          type: object
          additionalProperties:
            type: string
          description: >-
            A machine-readable structure to reference to the exact location(s)
            causing the error(s).
          nullable: true
        stackTrace:
          type: string
          description: ''
          nullable: true
        title:
          type: string
          description: A short human-readable description of the problem type.
          nullable: true
        traceId:
          type: string
          description: The request correlation ID this problem comes from.
          nullable: true
        type:
          enum:
            - unknown
            - access-control
            - authentication
            - authorization
            - availability
            - deprecation
            - quota
            - validation
          type: string
          description: The problem's category.
          nullable: true
      additionalProperties: false
      description: Common problem object.
    CpcMinBidsRequest:
      required:
        - skuIds
      type: object
      properties:
        skuIds:
          type: array
          items:
            type: string
          description: Sku id list for which minimum bid amounts are requested.
      additionalProperties: false
      description: Cpc Min Bids request object.
    CpcMinBidsResponse:
      required:
        - overallMinBid
        - skuMinBids
      type: object
      properties:
        overallMinBid:
          type: number
          description: Overall minimum bid amount for the given list of sku ids.
          format: double
        skuMinBids:
          type: array
          items:
            $ref: '#/components/schemas/SkuMinBid'
          description: Minimum bid amounts for each of the given list of sku ids.
      additionalProperties: false
      description: Cpc Min Bids response object.
      nullable: true
    SkuMinBid:
      required:
        - minBid
        - skuId
      type: object
      properties:
        minBid:
          type: number
          description: Minimum bid amount value.
          format: double
        skuId:
          type: string
          description: Sku id.
      additionalProperties: false
      description: An object represents the minimum bid amount value of a sku.
  securitySchemes:
    oauth:
      type: oauth2
      flows:
        clientCredentials:
          tokenUrl: https://api.criteo.com/oauth2/token
          scopes: {}
        authorizationCode:
          authorizationUrl: https://api.criteo.com/oauth2
          tokenUrl: https://api.criteo.com/oauth2/token
          scopes: {}

````