> For the complete documentation index, see [llms.txt](https://ask.birdie.ai/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://ask.birdie.ai/integrations-and-data-ingestion/how-to-integrate-with/buzzmonitor.md).

# BuzzMonitor

### Overview

Birdie's BuzzMonitor integration enables users to import social interactions (posts, comments and DMs) straight from the BuzzMonitor API. Below are the key steps to setting up the integration so Birdie can pull data from your environment.

### Requirements

* **BuzzMonitor User**: The user e-mail address tied with the BuzzMonitor platform. (called `bm_user`)
* **BuzzMonitor Access Token**: A random and unique key generated by BuzzMonitor that authenticates and allows communication between the platform and external systems.
* **Filter Payload (JSON)**: The platform sources are included in the payload as `report_sources` and are used to filter specific platforms and pages, defining which platform(s) the connector will request data from and which page(s) the data is linked to.

{% hint style="warning" %}
For Birdie to be able to access the **BuzzMonitor API**, you'll need to contact the BuzzMonitor team and request that developer mode be activated on your account.
{% endhint %}

To retrieve your access token and collection filters, follow the instructions below.

### Setup in BuzzMonitor

{% stepper %}
{% step %}

#### Access the Developer Page

* Go to the [settings page](https://app.buzzmonitor.com.br/user/settings):

<figure><img src="/files/rO8d81GHBkzzjBLWcUf7" alt=""><figcaption></figcaption></figure>

* Check if you can find the **Developer tab**:

<figure><img src="/files/yRfPyLP5Kmynnp5s5a24" alt="" width="60%"><figcaption></figcaption></figure>
{% endstep %}

{% step %}

#### Generate an Access Token

* Validate if the **Developer Mode** is enabled for your account before generating a new access token.
* Copy your existing token or generate a new one.

<figure><img src="/files/dgQ4g019H27UmNOCvGki" alt=""><figcaption></figcaption></figure>
{% endstep %}

{% step %}

#### Select the Collection

* Now you'll need to select your desired collection.

<figure><img src="/files/TBYJaPmOtkh5uHFcVLhF" alt=""><figcaption></figcaption></figure>
{% endstep %}

{% step %}

#### Export Collection Filters

* The filter payload will contain all required fields that Birdie will use to configure the integration.

<figure><img src="/files/4yGEmxyaKDVeTh1bn5BO" alt=""><figcaption></figcaption></figure>

* The payload is in JSON format and should look something like this:

{% code title="buzzmonitor\_payload.json" %}

```json
{
  "authentication_params": {
    "bm_user": "...",
    "api_key": "..."
  },
  "general_params": {
    "timezone": "-3.0",
    "until": "20250821595959",
    "since": "20250821000000",
    "services": [
      "facebook",
      "instagram"
    ]
  },
  "report_sources": {
    "facebook_pages_wall": [
      {
        "name": "...",
        "user": "...",
        "other_pages": false,
        "page_id": "...",
        "source": "..."
      }
    ],
    "instagram": [
      {
        "name": "...",
        "user": "...",
        "bm_user": "..."
      }
    ]
  }
}
```

{% endcode %}

{% hint style="warning" %}
The payload may contain more information; this example contains the minimum required fields to work with the BuzzMonitor API.
{% endhint %}
{% endstep %}

{% step %}

#### Share the Access Token and Payload securely

Save both access token and filter payload securely, this will be used to authenticate API and filter requests.

Share them with the Birdie team [using a secure way](/integrations-and-data-ingestion/securely-sharing-credentials-for-data-integration.md)
{% endstep %}
{% endstepper %}

### Connect to Birdie

Through this integration, you can import social media (posts and comments) and conversations (direct messages/inbox).

For each interaction, we extract the main fields for that interaction, such as Channel, Status, Priority, Tags, Author Name, Text, etc.

### Data in scope

#### Sources

The connector currently supports:

* `facebook_private_messages` (DMs)
* `facebook_page_wall` (Posts and Comments)
* `instagram` (DMs, posts and comments)
* `linkedin_updates` (Posts, comments and mentions)

#### Source fields

Each source requires different fields. The only common field is `name`, which is required for all types of source.

* facebook (page\_wall and private\_messages)
  * `name`
  * `user`
  * `page_id`
  * `other_pages`
* instagram
  * `name`
  * `user`
  * `bm_user`
* linkedin
  * `name`

#### Interaction types

The BuzzMonitor platform supports these interaction types:

* Public interactions:
  * `post`
  * `comment`
  * `comment_reply`
  * `reply`
  * `mention`
  * `comment_from_mention`
  * `reels`
  * `ad` (Promoted posts)
  * `carousel_album` (Instagram carousel)
* Private interactions (DMs):
  * `direct_message`
  * `message`

#### Custom fields

The integration will retrieve additional fields from the BuzzMonitor API, these fields can be mapped directly into Birdie, preserving your unique data structure.

Once imported, BuzzMonitor fields appear as Birdie custom fields, maintaining consistency across all platforms and enabling enhanced segmentation, filtering, and custom workflows in Birdie.


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter, and the optional `goal` query parameter:

```
GET https://ask.birdie.ai/integrations-and-data-ingestion/how-to-integrate-with/buzzmonitor.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
