Back to Bidders

SuperEdge

Features

Bidder Code superedge Prebid.org Member no
Prebid.js Adapter yes Prebid Server Adapter yes
Media Types display, native Multi Format Support check with bidder
TCF-EU Support yes IAB GVL ID 1554
GPP Support check with bidder DSA Support check with bidder
USP/CCPA Support yes COPPA Support yes
Supply Chain Support check with bidder Demand Chain Support check with bidder
Safeframes OK check with bidder Supports Deals check with bidder
Floors Module Support yes First Party Data Support check with bidder
Endpoint Compression check with bidder ORTB Blocking Support check with bidder
User IDs all (with commercial activation) Privacy Sandbox check with bidder
Prebid Server App Support check with bidder

Table of Contents

Modules

SharedID: We need you to include SharedID module, which is used to get prebid user commonid. It can better differentiating users to bid on ads.

Note

The SuperEdge Bidding adapter requires setup before beginning. Please contact us at op@superedge.co.jp

Bid Params

Prebid.js Bid Params

Name Scope Description Example Type
sk required Publisher token, communicated by SuperEdge. '12341235' string
publisher required Publisher ID, communicated by SuperEdge. 'abcdefg' string
region recommended Server region: US, EU or APAC. Default is US. 'US' string
test recommended 0 (default): production mode.
1: dev mode, no charge, higher bid frequency for easier debug.
1 / 0 integer
bidfloor recommended Sets a floor price for the bid. 0.05 float

Prebid Server Bid Params

Name Scope Description Example Type
sk required Publisher token, communicated by SuperEdge. '12341235' string
region recommended Server region: US, EU or APAC. Default is US. 'US' string
var adUnits = [{
    code: 'test-div',
    mediaTypes: {
        banner: {
            sizes: [
                [300, 250],
                [300, 600]
            ]
        }
    },
    bids: [{
        bidder: 'superedge',
        params: {
            sk: '12341235',           // required
            publisher: 'abcdefg',     // required
            region: 'US',             // recommended - US, EU, or APAC
            test: 0,                  // recommended - 0: production, 1: dev
            bidfloor: 0.05            // recommended
        }
    }]
}];

Native

var adUnits = [{
    code: 'test-div-native',
    mediaTypes: {
        native: {
            ortb: {
                assets: [{
                    id: 1,
                    required: 1,
                    img: {
                        type: 3,
                        w: 150,
                        h: 50
                    }
                },
                {
                    id: 2,
                    required: 1,
                    title: {
                        len: 80
                    }
                },
                {
                    id: 3,
                    required: 1,
                    data: {
                        type: 1
                    }
                },
                {
                    id: 4,
                    required: 1,
                    data: {
                        type: 2
                    }
                }]
            }
        }
    },
    bids: [{
        bidder: 'superedge',
        params: {
            sk: '12341235',           // required
            publisher: 'abcdefg',     // required
            region: 'US',             // recommended - US, EU, or APAC
            test: 0,                  // recommended - 0: production, 1: dev
            bidfloor: 0.05            // recommended
        }
    }]
}];

Prebid Server Test Request

The following test parameters can be used to verify that Prebid Server is working properly with the server-side SuperEdge adapter.

{
    "imp": [{
        "id": "some-impression-id",
        "banner": {
            "format": [{
                "w": 300,
                "h": 250
            }, {
                "w": 300,
                "h": 600
            }]
        },
        "ext": {
            "bidder": {
                "sk": "12341235",
                "region": "US"
            }
        }
    }]
}

"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_superedge hb_bidder_superedge hb_adid_superedge
hb_size_superedge hb_source_superedge hb_format_superedge
hb_cache_host_supere hb_cache_id_superedg hb_uuid_superedge
hb_cache_path_supere hb_deal_superedge

Back to Bidders