For the complete documentation index, see llms.txt. This page is also available as Markdown.

Dynamic Floor Pricing

Setting a dynamic floor price allows you to establish a custom price for your ad requests. To configure a dynamic floor price, set the floorPrice property of IAAdRequest with a double value representing the custom floor price in USD, as described in the following example:

IAAdRequest *adRequest =
[IAAdRequest build:^(id  _Nonnull builder) { 
    builder.spotID = @"YOUR_SPOT_ID";    
    builder.floorPrice = @(3.14); 
}];
let request = IAAdRequest.build { adRequest in
    adRequest.spotID = "YOUR_SPOT_ID"
    adRequest.floorPrice = 3.14
}

Submit the floorPrice value in CPM (cost per 1000 impressions), not per single impression.

Last updated