Platform Capabilities
Everything you need to
dominate the auction.
Replace your patchwork of scripts with a unified operating system built for yield, speed, and control.
Managed Prebid Server
Stop managing Go servers and scaling clusters. We host a global, auto-scaling Prebid Server instance optimized for cookie syncs and low latency.
- Global Edge Network (20+ regions)
- Automatic Adapter Updates
Identity Resolution
One-click integration for major ID solutions. Boost match rates by 40%.
ID5 Universal ID
The Trade Desk UID2
LiveRamp ATS
Criteo ID
SharedID
Real-time Analytics
Stream-based reporting for revenue, latency, and errors.
A/B Testing Engine
Experiment on bidders and timeouts with a simple toggle.
Control vs Testp < 0.05
Developer Experience
Infrastructure as Code.
Or No-Code. You choose.
Bidcliq is built for engineering teams. Our config is fully typed, versioned, and diffable. But we also provide a UI for your Ad Ops team to make safe changes.
Git-based Workflow
Sync config from your repo.
Safety Checks
Validation before deploy.
bidcliq.config.ts
1import { defineConfig } from '@bidcliq/sdk';
2
3export default defineConfig({
4 siteId: '12345',
5 bidders: ['appnexus', 'rubicon'],
6 floors: {
7 default: 1.20,
8 mobile: 0.80
9 },
10 modules: [
11 'currency',
12 'userId'
13 ]
14}); });