Title: News Break integration
Author: joshua
Published: August 7, 2026

---

 1. [Installation resources](https://docs.parse.ly/installation-resources/)
 2. [Installation tools](https://docs.parse.ly/installation-resources/installation-tools/)
 3. News Break integration

#  News Break integration

[News Break](https://www.newsbreak.com/) natively tracks in-app views for analytics,
but it also supports third-party analytics scripts. Adding a Parse.ly script to 
a News Break RSS feed will surface that traffic under the [aggregator referrer category](https://docs.parse.ly/user-handbook/dashboard/traffic-menu/referrers-tab/#aggregator).

## Sample implementation

To add Parse.ly tracking to your News Break feed, review the code snippet below.
Update your article template to provide the following dynamic updates:

 1. Replace the `url` value with the article’s [canonical URL](https://docs.parse.ly/installation-resources/parsely-integration/metadata/the-parsely-canonical-url/).
 2. Replace `YOUR-PARSELY-SITE-ID` with your [Site ID](https://docs.parse.ly/installation-resources/parsely-integration/tracking-code-setup/site-id/).

    ```lang-html
    <nb:scripts><![CDATA[
      <script>
        PARSELY = {
          autotrack: false,
          onload: function() {
            PARSELY.beacon.trackPageView({
              url: 'https://www.yoursite.com/your-article/',
              urlref: 'https://newsbreak.com/'
            });
          }
        }
      </script>
      <script id="parsely-cfg" src="//cdn.parsely.com/keys/YOUR-PARSELY-SITE-ID/p.js"></script>
    ]]></nb:scripts>
    ```

After making the updates, copy the script and insert it into according to the News
Break’s [RSS feed specification document](https://support.newsbreak.com/hubfs/NewsBreak%20RSS%20and%20MRSS%20Specifications.pdf?hsLang=en).

    ```lang-html
    <rss version="2.0" xmlns:nb="https://www.newsbreak.com/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:content="http://purl.org/rss/1.0/modules/content/">
      <channel>
        <item>
          <!-- standard feed fields -->
          <title>Your Article Title</title>
          <link>https://www.yoursite.com/your-article/</link>
          ...

          <!-- Parse.ly tracking block -->
    	  ...

        </item>
      </channel>
    </rss>
    ```

Last updated: August 07, 2026