Back to Bidders

CondorX

Features

Bidder Code condorx Prebid.org Member no
Prebid.js Adapter yes Prebid Server Adapter no
Media Types display, native Multi Format Support will-bid-on-any
TCF-EU Support yes IAB GVL ID 1375
GPP Support check with bidder DSA Support no
USP/CCPA Support no COPPA Support no
Supply Chain Support yes Demand Chain Support no
Safeframes OK no Supports Deals no
Floors Module Support yes First Party Data Support no
Endpoint Compression check with bidder ORTB Blocking Support no
User IDs none Privacy Sandbox check with bidder

Note

The CondorX Bidding adapter requires setup before beginning. Please contact us at CondorX.

Bid params

Name Scope Description Example Type Default
widget required The widget ID, by CondorX 12345 integer -
website required The website ID, by CondorX 12345 integer -
url optional Current url https://condorx.io string 'current url'
bidfloor optional Minimum bid price in USD 0.50 number -1
useOpenRTB optional Enable OpenRTB format requests true boolean false

Request Formats

The adapter supports both legacy and OpenRTB request formats:

Legacy Format (Default)

Uses GET request to legacy endpoint:

GET https://api.condorx.io/cxb/get.json

OpenRTB Format

Uses POST request to OpenRTB endpoint:

POST https://api.condorx.io/cxb/openrtb.json

To enable OpenRTB format, set useOpenRTB: true in the bid parameters.

Example Ad Units

var adUnits = [{
    code: 'condorx-container-id',
    mediaTypes: {
        banner: {
            sizes: [[300, 250]],
        }
    },
    bids: [{
        bidder: "condorx",
        params: {
            widget: 'widget id by CondorX',
            website: 'website id by CondorX',
            url:'current url',
            bidfloor: 0.50
        }
    }]
},
    {
        code: 'condorx-container-id',
        mediaTypes: {
            native: {
                image: {
                    required: true,
                    sizes: [236, 202]
                },
                title: {
                    required: true,
                    len: 100
                },
                sponsoredBy: {
                    required: true
                },
                clickUrl: {
                    required: true
                },
                body: {
                    required: true
                }
            }
        },
        bids: [{
            bidder: "condorx",
            params: {
                widget: 'widget id by CondorX',
                website: 'website id by CondorX',
                url:'current url',
                bidfloor: 0.75
            }
        }]
    },
    {
        code: 'condorx-container-id',
        mediaTypes: {
            banner: {
                sizes: [[728, 90]],
            }
        },
        bids: [{
            bidder: "condorx",
            params: {
                widget: 'widget id by CondorX',
                website: 'website id by CondorX',
                url:'current url',
                bidfloor: 1.00,
                useOpenRTB: true
            }
        }]
    }];

"Send All Bids" Ad Server Keys

These are the bidder-specific keys that would be targeted within GAM in a Send-All-Bids scenario. GAM truncates keys to 20 characters.
hb_pb_condorx hb_bidder_condorx hb_adid_condorx
hb_size_condorx hb_source_condorx hb_format_condorx
hb_cache_host_condor hb_cache_id_condorx hb_uuid_condorx
hb_cache_path_condor hb_deal_condorx

Back to Bidders