v29

latestOpenAPI 3.0.3MITraw.githubusercontent.com2026-06-042661,1122.5 MB
advanced_auction

Get item bid options (POST)

Get the bid options for a batch of retail catalog items.

The catalog must be owned by the "operation user_account". See detailed documentation here. By default, the "operation user_account" is the token user_account.

Optional: Business Access: Specify an ad_account_id (obtained via List ad accounts) to use the owner of that ad_account as the "operation user_account". In order to do this, the token user_account must have one of the following Business Access roles on the ad_account: Owner, Admin.

This endpoint is not available to all users.

post/advanced_auction/items/get

Query parameters

ad_account_idstring

Unique identifier of an ad account.

Request body

catalog_idstring required

Example request

{
  "items": [
    {
      "item_id": "DS0294-M",
      "language": "EN"
    }
  ]
}

Response

The request has succeeded.

catalog_idstring

Example response

{
  "items": [
    {
      "bid_options": {
        "app_type_multipliers": {
          "android_mobile": 1.1,
          "android_tablet": 1.1,
          "ipad": 1.2,
          "iphone": 1.2,
          "web": 0.9,
          "web_mobile": 0.8
        },
        "placement_multipliers": {
          "browse": 0.9,
          "search": 1.2,
          "related_pins": 1.1
        }
      },
      "item_id": "DS0294-M",
      "language": "EN"
    }
  ]
}