Skip to content

New Adapter: Start.io #6018

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
80 changes: 80 additions & 0 deletions dev-docs/bidders/startio.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,80 @@
---
layout: bidder
title: Start.io
biddercode: startio
description: Prebid Start.io Adapter
tcfeu_supported: false
coppa_supported: false
gpp_supported: false
floors_supported: false
media_types: banner, video, native
safeframes_ok: false
schain_supported: false
gvl_id: 1216
usp_supported: false
pbjs: true
pbs: true
prebid_member: false
fpd_supported: false
privacy_sandbox: no
ortb_blocking_supported: false
sidebarType: 1
---

### Before You Begin

The Start.io bidder adapter requires additional setup and approval from the Start.io team. For additional information, please reach out to <[email protected]>.

### Bid Params

{: .table .table-bordered .table-striped }
| Name | Scope | Description | Example | Type |
|---------------|----------|-----------------------------------|------------------------|--------------|
| `publisherId` | required | Publisher ID | `'publisher-1234'` | `string` |

#### Configuration

Sample banner setup:

```js
<script>
var adUnits = [
{
code: "div-gpt-ad-12345-0",
mediaTypes: {
banner: {
sizes: [[300, 250]]
}
},
bids: [
{
bidder: "startio",
params: {
publisherId: "publisher-12345"
}
}
]
}
]

pbjs.que.push(function() {
pbjs.addAdUnits(adUnits);
});
</script>
```

### Additional Notes

#### Request and Response Attributes

- Bids are returned in **net** - that is, the bids returned reflect the bid amount with revenue sharing already taken into account. No adjustment is necessary.

#### Supported Media Types

- Banner
- Native
- Video (instream and outstream)

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
#### Supported Media Types
- Banner
- Native
- Video (instream and outstream)

This is not necessary. The media types are specified in the meta data already

Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Done.

#### Default Ad Server Key Value

- `startio`
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
#### Default Ad Server Key Value
- `startio`

This is the biddercode in the meta data and is not required to be listed here

Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Done.