This document describes how to add a new Bidder to Prebid Server. Bidders are responsible for reaching out to your Server to fetch Bids.
NOTE: To make everyone's lives easier, Bidders are expected to make Net bids (e.g. "If this ad wins, what will the publisher make?), not Gross ones. Publishers can correct for Gross bids anyway by setting Bid Adjustments to account for fees.
This name must be unique. Existing BidderNames can be found here.
Throughout the rest of this document, substitute {bidder}
with the name you've chosen.
Bidders may define their own APIs for Publishers pass custom values. It is strongly encouraged that these not duplicate values already present in the OpenRTB 2.5 spec.
Publishers will send values for these parameters in request.imp[i].ext.{bidder}
of
the Auction endpoint. Prebid Server will preprocess these so that
your bidder will access them at request.imp[i].ext.bidder
--regardless of what your {bidder}
name is.
Bidder implementations are scattered throughout several files.
adapters/{bidder}/{bidder}.go
: contains an implementation of the Bidder interface.openrtb_ext/imp_{bidder}.go
: contract classes for your Bidder's params.usersync/usersyncers/{bidder}.go
: A Usersyncer which returns cookie sync info for your bidder.usersync/usersyncers/{bidder}_test.go
: Unit tests for your Usersyncerstatic/bidder-params/{bidder}.json
: A draft-4 json-schema which validates your Bidder's params.static/bidder-info/{bidder}.yaml
: contains metadata (e.g. contact email, platform & media type support) about the adapter
Bidder implementations may assume that any params have already been validated against the defined json-schema.
Bidder tests live in two files:
adapters/{bidder}/{bidder}_test.go
: contains unit tests for your Bidder implementation.adapters/{bidder}/params_test.go
: contains unit tests for your Bidder's JSON Schema params.
Since most Bidders communicate through HTTP using JSON bodies, you should use the JSON-test utilities. This comes with several benefits, which are described in the source code docs.
If your HTTP requests don't use JSON, you'll need to write your tests in the code. We expect to see at least 90% code coverage on each Bidder.
Bidders should also define an adapters/{bidder}/{bidder}test/params/race/{mediaType}.json
file for any supported
Media Types (banner, video, audio, or native). These files should contain a JSON object with all the bidder params
(required & optional) which are expected in supporting that video type. This will be used in automated tests which
check for race conditions across Bidders.
Build and start your server:
go build .
./prebid-server
Then POST
an OpenRTB Request to http://localhost:8000/openrtb2/auction
.
If at least one request.imp[i].ext.{bidder}
is defined in your Request,
then your bidder should be called.
To test user syncs, save a UID using the FamilyName of your Usersyncer.
The next time you use /openrtb2/auction
, the OpenRTB request sent to your Bidder should have
BidRequest.User.BuyerUID
with the value you saved.
Add a new BidderName constant for your {bidder}. Update the newAdapterMap function to make your Bidder available in auctions. Update the NewSyncerMap function to make your Bidder available for usersyncs.
Finally, Contribute your Bidder to the project.
Note: In order to be part of the auction, all bids must include:
- An ID
- An ImpID which matches one of the
Imp[i].ID
s from the incomingBidRequest
- A positive
Bid.Price
- A
Bid.CrID
which uniquely identifies the Creative in the bid.
Bids which don't satisfy these standards will be filtered out before Prebid Server responds.