Skip to content

Commit

Permalink
Adds doco about supporting native ads. (#5841)
Browse files Browse the repository at this point in the history
  • Loading branch information
antosarho authored Feb 3, 2025
1 parent ed7917a commit 98b8e4e
Showing 1 changed file with 34 additions and 1 deletion.
35 changes: 34 additions & 1 deletion dev-docs/bidders/adnuntius.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ description: Prebid Adnuntius Bidder Adaptor
pbjs: true
pbs: true
biddercode: adnuntius
media_types: banner, video
media_types: banner, video, native
tcfeu_supported: true
fpd_supported: true
gvl_id: 855
Expand Down Expand Up @@ -192,3 +192,36 @@ Currently we only support client requests and instream context. An example reque
}]
};
```

### Native requests

An example native request we support is as follows:

```json
{
"bid": [
{
"bidId": "adn-0000000000000551",
"bidder": "adnuntius",
"params": {
"auId": "0000000000000551",
"network": "123",
},
"mediaTypes": {
"native": {
"ortb": {
"assets": [{
"id": 1,
"required": 1,
"img": {
"type": 3,
"w": 250,
"h": 250
}
}]
}
}
}
}
]}
```

0 comments on commit 98b8e4e

Please sign in to comment.