---
"@context": https://schema.org
"@type": TechArticle
"@id": https://www.twilio.com/docs/segment/connections/destinations/catalog/bronto#article
headline: Bronto Destination
description: Connect the Bronto destination to Segment to send Order Completed conversion events to Bronto using the client-side Analytics.js library.
url: https://www.twilio.com/docs/segment/connections/destinations/catalog/bronto
inLanguage: en
dateModified: 2026-07-15T17:40:17.000Z
author:
  "@type": Organization
  name: Twilio Developer Education Team
publisher:
  "@type": Organization
  name: Twilio
---

# Bronto Destination

## Destination Info

* Accepts [Track](/docs/segment/connections/spec/track) calls.
* Refer to it as **Bronto** in the [Integrations object.](/docs/segment/guides/filtering-data/#filtering-with-the-integrations-object)

### Components

* [Browser](https://github.com/segment-integrations/analytics.js-integration-bronto)

## Connection Modes

[Learn more about connection modes.](/docs/segment/connections/destinations/#connection-modes)

### Device-Mode

* web: yes
* mobile: no
* server: no

### Cloud-Mode

* web: no
* mobile: no
* server: no

The Bronto destination code is open source on the [Bronto Analytics.js integration GitHub repository](https://github.com/segment-integrations/analytics.js-integration-bronto).

## Getting Started

To get started with Bronto, you need your Bronto Site ID. You can find your Site ID on your Bronto Account Page.

Bronto works with the client-side JavaScript library, Analytics.js.

## Track

Use the [Track](/docs/segment/connections/spec/track) method to send conversion events to Bronto. This event must be named `Order Completed`. Segment forwards the product SKU, description, quantity, name, and price properties defined in the event to Bronto.

Here's an example:

```javascript
analytics.track('Order Completed', {
  products: [{ sku: 'c546c96', quantity: 8, name: 'my-product', price: 99.99 }],
  orderId: '55c497bf'
});
```

## Settings

Segment lets you change these destination settings from the Segment app without having to touch any code.

| Field   | Description                                                                                          | Required | Type   |
| ------- | ---------------------------------------------------------------------------------------------------- | -------- | ------ |
| Domain  | You can use your own domain with Bronto                                                              | No       | string |
| Site ID | You can find your Site ID in your Bronto \[Account Page]\(https://app.bronto.com/login/index/login/) | Yes      | string |
