Developers
An OpenRTB-native ad platform, built for engineers.
A typed SDK for six platforms and a clean API. Request an ad, run the auction, render the winner, in under 90ms.
Quickstart
Install the SDK and request your first ad in minutes.
build.gradle.kts
kotlin
dependencies {
implementation("com.brightface:sdk:1.0.0")
}AdSlot.kt
kotlin
val bfa = BrightFace.init(apiKey = BuildConfig.BFA_KEY)
val ad = bfa.requestAd(
slot = "feed-native-1",
formats = listOf(Format.VIDEO, Format.IMAGE),
floorCpm = 4.5,
)
adView.render(ad)
