Integrate with Adtryx using the OpenRTB 2.5 protocol for real-time bidding.
Adtryx uses the OpenRTB (Real-Time Bidding) 2.5 protocol specification for programmatic advertising. This protocol enables real-time auctions for ad impressions, allowing advertisers to bid on inventory in milliseconds.
Our RTB system processes bid requests and responses in JSON format over HTTP/HTTPS, ensuring fast and secure transactions for all parties involved.
Response time under 100ms for optimal auction performance
HTTPS encryption and authentication for all API calls
Instant bid processing with real-time reporting
Distributed infrastructure across multiple regions
Bid Request Endpoint:
Content-Type: application/json
Standard OpenRTB 2.5 bid request format:
{
"id": "unique-request-id",
"imp": [{
"id": "1",
"banner": {
"w": 300,
"h": 250,
"pos": 1
},
"bidfloor": 0.01,
"bidfloorcur": "USD"
}],
"site": {
"id": "site-id",
"domain": "example.com",
"cat": ["IAB1"],
"page": "https://example.com/page"
},
"device": {
"ua": "Mozilla/5.0...",
"ip": "192.168.1.1",
"geo": {
"country": "USA",
"region": "CA",
"city": "Los Angeles"
}
},
"user": {
"id": "user-id"
},
"tmax": 100
}Standard OpenRTB 2.5 bid response format:
{
"id": "unique-request-id",
"seatbid": [{
"bid": [{
"id": "bid-id",
"impid": "1",
"price": 0.50,
"adm": "<creative markup>",
"adomain": ["advertiser.com"],
"crid": "creative-id",
"w": 300,
"h": 250
}],
"seat": "seat-id"
}],
"cur": "USD"
}