<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
  <channel>
    <title>Diffbot Changelog</title>
    <link>https://www.diffbot.com/changelog</link>
    <atom:link href="https://www.diffbot.com/changelog/feed.xml" rel="self" type="application/rss+xml"/>
    <description>Product updates from Diffbot Engineering. You heard it here first.</description>
    <language>en-US</language>
    <lastBuildDate>Mon, 15 Jun 2026 00:00:00 GMT</lastBuildDate>
    <item>
      <title>sortBy:date, Last six months vs. full archive</title>
      <link>https://www.diffbot.com/changelog/2026-06-15-kg-article-search-sortbydate-last-six-months-or-full-archive</link>
      <guid isPermaLink="true">https://www.diffbot.com/changelog/2026-06-15-kg-article-search-sortbydate-last-six-months-or-full-archive</guid>
      <pubDate>Mon, 15 Jun 2026 00:00:00 GMT</pubDate>
      <description><![CDATA[<p>There are two modes of searching Article data in the Diffbot KG when sorting by date:</p>
<ol>
<li><strong>Default mode</strong>: searches articles crawled in the last six months using an Elastic Search cache to minimize response time and return recently crawled data only.</li>
<li><strong>searchArchives mode</strong>: searches Article data sorted by date crawled at any time over the last 2+ years.</li>
</ol>
<p>To enable a search of the archives when sorting by publication date, add <strong>&amp;searchArchives=1</strong> to your API call, i.e. <a href="https://kg.diffbot.com/kg/v3/dqltoken=YOUR_TOKEN&amp;type=query&amp;size=1&amp;query=type%3AArticle+author%3A%22Jerome+Choo%22+sortBy%3Adate&amp;searchArchive=1" target="_blank" rel="noreferrer">https://kg.diffbot.com/kg/v3/dqltoken=YOUR_TOKEN&amp;type=query&amp;size=1&amp;query=type%3AArticle+author%3A&quot;Jerome+Choo&quot;+sortBy%3Adate&amp;searchArchive=1</a></p>]]></description>
    </item>
    <item>
      <title>Extract Links from a Sitemap</title>
      <link>https://www.diffbot.com/changelog/2026-05-06-extract-links-from-a-sitemap</link>
      <guid isPermaLink="true">https://www.diffbot.com/changelog/2026-05-06-extract-links-from-a-sitemap</guid>
      <pubDate>Wed, 06 May 2026 00:00:00 GMT</pubDate>
      <description><![CDATA[<p>Diffbot API now supports link extraction from an xml sitemap using the Analyze API and the 'fields=allLinks' param. Sample API Call: <a href="https://api.diffbot.com/v3/analyze?url=https://www.alwihdainfo.com/sitemap-posts.xml&amp;fields=allLinks&amp;token=YOUR-TOKEN" target="_blank" rel="noreferrer">https://api.diffbot.com/v3/analyze?url=https://www.alwihdainfo.com/sitemap-posts.xml&amp;fields=allLinks&amp;token=YOUR-TOKEN</a></p>
<p>API Response Excerpt:</p>
<div class="language- vp-adaptive-theme"><button title="Copy Code" class="copy"></button><span class="lang"></span><pre class="shiki shiki-themes github-light github-dark vp-code" tabindex="0" v-pre=""><code><span class="line"><span>"request": {</span></span>
<span class="line"><span>    "pageUrl": "https://www.alwihdainfo.com/sitemap-posts.xml",</span></span>
<span class="line"><span>    "api": "analyze",</span></span>
<span class="line"><span>    "fields": "allLinks",</span></span>
<span class="line"><span>    "version": 3</span></span>
<span class="line"><span>},</span></span>
<span class="line"><span>"humanLanguage": "fr",</span></span>
<span class="line"><span>"allLinks": [</span></span>
<span class="line"><span>    "https://www.alwihdainfo.com/hainan-free-trade-port-a-growth-engine-not-a-tax-haven/",</span></span>
<span class="line"><span>    "https://www.alwihdainfo.com/chinas-zero-tariff-policy-for-africa-a-development-opportunity-amid-western-concerns/",</span></span>
<span class="line"><span>...</span></span></code></pre>
</div>]]></description>
    </item>
    <item>
      <title>Optional Param noredirects</title>
      <link>https://www.diffbot.com/changelog/2026-03-03-optional-param-noredirects</link>
      <guid isPermaLink="true">https://www.diffbot.com/changelog/2026-03-03-optional-param-noredirects</guid>
      <pubDate>Tue, 03 Mar 2026 00:00:00 GMT</pubDate>
      <description><![CDATA[<p>We have added support for the optional query parameter <code>noredirects</code> to the Diffbot API. This parameter prevents the Diffbot API from automatically following HTTP redirects for the submitted URL, giving you more control over the extraction process.</p>
<p><strong>Usage</strong>
To use this parameter, simply append <code>noredirects</code> to your API call URL.</p>
<p>Example Request: <a href="https://api.diffbot.com/v3/analyze/?token=YOUR_TOKEN&amp;url=ARTICLE_URL&amp;noredirects" target="_blank" rel="noreferrer">https://api.diffbot.com/v3/analyze/?token=YOUR_TOKEN&amp;url=ARTICLE_URL&amp;noredirects</a></p>
<p><strong>Error Handling</strong>
When the noredirects parameter is used, the API will not follow a redirect. Instead, if a redirect is required to access the page content, the API will return an HTTP 500 Internal Server Error with a specific JSON response body. The final, redirected URL is not included in the response.</p>
<p>Example Error Response (HTTP 500):</p>
<div class="language-json vp-adaptive-theme"><button title="Copy Code" class="copy"></button><span class="lang">json</span><pre class="shiki shiki-themes github-light github-dark vp-code" tabindex="0" v-pre=""><code><span class="line"><span style="--shiki-light:#24292E;--shiki-dark:#E1E4E8">{</span></span>
<span class="line"><span style="--shiki-light:#005CC5;--shiki-dark:#79B8FF">  "errorCode"</span><span style="--shiki-light:#24292E;--shiki-dark:#E1E4E8">: </span><span style="--shiki-light:#005CC5;--shiki-dark:#79B8FF">500</span><span style="--shiki-light:#24292E;--shiki-dark:#E1E4E8">,</span></span>
<span class="line"><span style="--shiki-light:#005CC5;--shiki-dark:#79B8FF">  "error"</span><span style="--shiki-light:#24292E;--shiki-dark:#E1E4E8">: </span><span style="--shiki-light:#032F62;--shiki-dark:#9ECBFF">"This page requires a redirect. Please retry with redirects enabled if this url needs to be extracted."</span></span>
<span class="line"><span style="--shiki-light:#24292E;--shiki-dark:#E1E4E8">}</span></span></code></pre>
</div><p><strong>Primary Use Cases &amp; Benefits</strong>
This parameter is most beneficial when using specific extraction APIs, such as the Article API or Product API, rather than the Diffbot Analyze API. Use it to:</p>
<ul>
<li>Prevent extractions: for example, use this param to prevent an outdated article or product offer URL from silently redirecting to a general index or homepage when the original content is no longer available. This avoids the undesired extraction of the first item from a list on the index page.</li>
<li>Control the extraction source: to ensure that the extraction is performed only on the exact URL submitted, giving developers certainty regarding the data source.</li>
</ul>]]></description>
    </item>
    <item>
      <title>50 billion new facts Added to the KG in the last month</title>
      <link>https://www.diffbot.com/changelog/2026-01-07-50-billion-new-facts-added-to-the-kg-in-the-last-month</link>
      <guid isPermaLink="true">https://www.diffbot.com/changelog/2026-01-07-50-billion-new-facts-added-to-the-kg-in-the-last-month</guid>
      <pubDate>Wed, 07 Jan 2026 00:00:00 GMT</pubDate>
      <description><![CDATA[<p>50 billion new facts were added to the Diffbot Knowledge Graph in the last month, including 30M new organizations and 600M articles.</p>]]></description>
    </item>
    <item>
      <title>DiffbotAPI now returns Interactive Elements for 'mode=llm'</title>
      <link>https://www.diffbot.com/changelog/2025-11-10-diffbotapi-now-returns-interactive-elements-for-modellm</link>
      <guid isPermaLink="true">https://www.diffbot.com/changelog/2025-11-10-diffbotapi-now-returns-interactive-elements-for-modellm</guid>
      <pubDate>Mon, 10 Nov 2025 00:00:00 GMT</pubDate>
      <description><![CDATA[<p>Use this optional param to return the extracted data as llm-ready markdown, i.e. '&amp;mode=llm', including interactive elements. Try it here: <a href="https://api.diffbot.com/v3/article?token=0a1ccea6c5a3a8845558aebd8204c454&amp;url=https://theorangeone.net/&amp;mode=llm" target="_blank" rel="noreferrer">Website example</a> or <a href="https://api.diffbot.com/v3/article?token=0a1ccea6c5a3a8845558aebd8204c454&amp;url=https://github.com/axolotl-ai-cloud/axolotl&amp;mode=llm" target="_blank" rel="noreferrer">Github example</a>.</p>]]></description>
    </item>
    <item>
      <title>NACE Code Rev 2.1 Updates</title>
      <link>https://www.diffbot.com/changelog/2025-09-04-nace-code-rev-21-updates</link>
      <guid isPermaLink="true">https://www.diffbot.com/changelog/2025-09-04-nace-code-rev-21-updates</guid>
      <pubDate>Thu, 04 Sep 2025 00:00:00 GMT</pubDate>
      <description><![CDATA[<p>KG DATA CHANGE NOTIFICATION - <code>Organization.naceClassification</code></p>
<p>We will be updating <code>Organization.naceClassification</code> to NACE Rev. 2.1 in build v437 of the Diffbot Knowledge Graph, targeted to go live in about two weeks. Please read on for more details.</p>
<p>Ordinarily, we take extraordinary measures to avoid breaking changes in the Diffbot Knowledge Graph ontologies. However, in some cases, there is no benefit in retaining a prior version of the data, so we replace an existing attribute with a new data format. The <code>Organization.naceClassification</code> field is one such case. The current version of the NACE codes in the KG lacks level, isPrimary, and ancestor codes. And, some of the codes are no longer valid in the latest NACE Rev. 2.1 version.</p>
<p>In Rev 2.1 of the NACE codes:</p>
<ul>
<li>NACE codes are no longer strictly 4-digit numbers.</li>
<li>NACE codes are structured into:<br>
    <em>Sections (letters A–V, level 1) →&amp;#xA;</em> Divisions (2 digits, level 2) →<br>
    <em>Groups (3 digits with dot, level 3) →&amp;#xA;</em> Classes (4 digits with dot, level 4).</li>
<li>Codes are unique. For example, both 28 and 29 share the same parent C, but it is not repeated after 28 because it already appears earlier in the primary chain.</li>
<li>There is at most one primary code per level.</li>
<li>Primary codes are listed before non-primaries.</li>
<li>Specific codes (e.g., 29.10) are listed before broader ones (e.g., 29.1).</li>
</ul>
<br />
<p>For a comparison of the existing code format versus the new Rev 2.1 format, see below.</p>
<h4>CURRENT DATA FORMAT: NACE codes - <code>Organization.naceClassification</code> </h4>
<p><a href="https://app.diffbot.com/entity/EtPSXbV2rPHOKcL-GEO2pAA" target="_blank" rel="noreferrer">Volkswagen</a>'s current NACE classification in the KG appears as the following</p>
<div class="language-json vp-adaptive-theme"><button title="Copy Code" class="copy"></button><span class="lang">json</span><pre class="shiki shiki-themes github-light github-dark vp-code" tabindex="0" v-pre=""><code><span class="line"><span style="--shiki-light:#24292E;--shiki-dark:#E1E4E8">[  </span></span>
<span class="line"><span style="--shiki-light:#24292E;--shiki-dark:#E1E4E8">  {  </span></span>
<span class="line"><span style="--shiki-light:#005CC5;--shiki-dark:#79B8FF">    "code"</span><span style="--shiki-light:#24292E;--shiki-dark:#E1E4E8">: </span><span style="--shiki-light:#032F62;--shiki-dark:#9ECBFF">"2910"</span><span style="--shiki-light:#24292E;--shiki-dark:#E1E4E8">,  </span></span>
<span class="line"><span style="--shiki-light:#005CC5;--shiki-dark:#79B8FF">    "isPrimary"</span><span style="--shiki-light:#24292E;--shiki-dark:#E1E4E8">: </span><span style="--shiki-light:#005CC5;--shiki-dark:#79B8FF">false</span><span style="--shiki-light:#24292E;--shiki-dark:#E1E4E8">,  </span></span>
<span class="line"><span style="--shiki-light:#005CC5;--shiki-dark:#79B8FF">    "name"</span><span style="--shiki-light:#24292E;--shiki-dark:#E1E4E8">: </span><span style="--shiki-light:#032F62;--shiki-dark:#9ECBFF">"Manufacture of motor vehicles"</span><span style="--shiki-light:#24292E;--shiki-dark:#E1E4E8">  </span></span>
<span class="line"><span style="--shiki-light:#24292E;--shiki-dark:#E1E4E8">  },  </span></span>
<span class="line"><span style="--shiki-light:#24292E;--shiki-dark:#E1E4E8">  {  </span></span>
<span class="line"><span style="--shiki-light:#005CC5;--shiki-dark:#79B8FF">    "code"</span><span style="--shiki-light:#24292E;--shiki-dark:#E1E4E8">: </span><span style="--shiki-light:#032F62;--shiki-dark:#9ECBFF">"7022"</span><span style="--shiki-light:#24292E;--shiki-dark:#E1E4E8">,  </span></span>
<span class="line"><span style="--shiki-light:#005CC5;--shiki-dark:#79B8FF">    "isPrimary"</span><span style="--shiki-light:#24292E;--shiki-dark:#E1E4E8">: </span><span style="--shiki-light:#005CC5;--shiki-dark:#79B8FF">false</span><span style="--shiki-light:#24292E;--shiki-dark:#E1E4E8">,  </span></span>
<span class="line"><span style="--shiki-light:#005CC5;--shiki-dark:#79B8FF">    "name"</span><span style="--shiki-light:#24292E;--shiki-dark:#E1E4E8">: </span><span style="--shiki-light:#032F62;--shiki-dark:#9ECBFF">"Business and other management consultancy activities"</span><span style="--shiki-light:#24292E;--shiki-dark:#E1E4E8">  </span></span>
<span class="line"><span style="--shiki-light:#24292E;--shiki-dark:#E1E4E8">  },  </span></span>
<span class="line"><span style="--shiki-light:#24292E;--shiki-dark:#E1E4E8">  {  </span></span>
<span class="line"><span style="--shiki-light:#005CC5;--shiki-dark:#79B8FF">    "code"</span><span style="--shiki-light:#24292E;--shiki-dark:#E1E4E8">: </span><span style="--shiki-light:#032F62;--shiki-dark:#9ECBFF">"7021"</span><span style="--shiki-light:#24292E;--shiki-dark:#E1E4E8">,  </span></span>
<span class="line"><span style="--shiki-light:#005CC5;--shiki-dark:#79B8FF">    "isPrimary"</span><span style="--shiki-light:#24292E;--shiki-dark:#E1E4E8">: </span><span style="--shiki-light:#005CC5;--shiki-dark:#79B8FF">false</span><span style="--shiki-light:#24292E;--shiki-dark:#E1E4E8">,  </span></span>
<span class="line"><span style="--shiki-light:#005CC5;--shiki-dark:#79B8FF">    "name"</span><span style="--shiki-light:#24292E;--shiki-dark:#E1E4E8">: </span><span style="--shiki-light:#032F62;--shiki-dark:#9ECBFF">"Public relations and communication activities"</span><span style="--shiki-light:#24292E;--shiki-dark:#E1E4E8">  </span></span>
<span class="line"><span style="--shiki-light:#24292E;--shiki-dark:#E1E4E8">  }  </span></span>
<span class="line"><span style="--shiki-light:#24292E;--shiki-dark:#E1E4E8">]</span></span></code></pre>
</div><p>Issues with this data:</p>
<ul>
<li>Missing level information</li>
<li>All codes are marked as non-primary</li>
<li>Parent codes are missing</li>
<li>Codes 7022 and 7021 are no longer valid in the Rev. 2.1 version of the codes</li>
<li>Volkswagen should not be classified under those industries in 7022 and 7021.</li>
</ul>
<br />
<h4>NEW DATA FORMAT: NACE Rev 2.1 Codes </h4>
<p>When the updates deploy, <a href="https://app.diffbot.com/entity/EtPSXbV2rPHOKcL-GEO2pAA" target="_blank" rel="noreferrer">Volkswagen</a>'s <code>Organization.naceClassification</code> NACE codes will look like this:</p>
<div class="language-json vp-adaptive-theme"><button title="Copy Code" class="copy"></button><span class="lang">json</span><pre class="shiki shiki-themes github-light github-dark vp-code" tabindex="0" v-pre=""><code><span class="line"><span style="--shiki-light:#24292E;--shiki-dark:#E1E4E8">[  </span></span>
<span class="line"><span style="--shiki-light:#24292E;--shiki-dark:#E1E4E8">  {  </span></span>
<span class="line"><span style="--shiki-light:#005CC5;--shiki-dark:#79B8FF">    "code"</span><span style="--shiki-light:#24292E;--shiki-dark:#E1E4E8">: </span><span style="--shiki-light:#032F62;--shiki-dark:#9ECBFF">"29.10"</span><span style="--shiki-light:#24292E;--shiki-dark:#E1E4E8">,  </span></span>
<span class="line"><span style="--shiki-light:#005CC5;--shiki-dark:#79B8FF">    "level"</span><span style="--shiki-light:#24292E;--shiki-dark:#E1E4E8">: </span><span style="--shiki-light:#005CC5;--shiki-dark:#79B8FF">4</span><span style="--shiki-light:#24292E;--shiki-dark:#E1E4E8">,  </span></span>
<span class="line"><span style="--shiki-light:#005CC5;--shiki-dark:#79B8FF">    "isPrimary"</span><span style="--shiki-light:#24292E;--shiki-dark:#E1E4E8">: </span><span style="--shiki-light:#005CC5;--shiki-dark:#79B8FF">true</span><span style="--shiki-light:#24292E;--shiki-dark:#E1E4E8">,  </span></span>
<span class="line"><span style="--shiki-light:#005CC5;--shiki-dark:#79B8FF">    "name"</span><span style="--shiki-light:#24292E;--shiki-dark:#E1E4E8">: </span><span style="--shiki-light:#032F62;--shiki-dark:#9ECBFF">"Manufacture of motor vehicles"</span><span style="--shiki-light:#24292E;--shiki-dark:#E1E4E8">,  </span></span>
<span class="line"><span style="--shiki-light:#005CC5;--shiki-dark:#79B8FF">    "version"</span><span style="--shiki-light:#24292E;--shiki-dark:#E1E4E8">: </span><span style="--shiki-light:#032F62;--shiki-dark:#9ECBFF">"Rev 2.1"</span><span style="--shiki-light:#24292E;--shiki-dark:#E1E4E8">  </span></span>
<span class="line"><span style="--shiki-light:#24292E;--shiki-dark:#E1E4E8">  },  </span></span>
<span class="line"><span style="--shiki-light:#24292E;--shiki-dark:#E1E4E8">  {  </span></span>
<span class="line"><span style="--shiki-light:#005CC5;--shiki-dark:#79B8FF">    "code"</span><span style="--shiki-light:#24292E;--shiki-dark:#E1E4E8">: </span><span style="--shiki-light:#032F62;--shiki-dark:#9ECBFF">"29.1"</span><span style="--shiki-light:#24292E;--shiki-dark:#E1E4E8">,  </span></span>
<span class="line"><span style="--shiki-light:#005CC5;--shiki-dark:#79B8FF">    "level"</span><span style="--shiki-light:#24292E;--shiki-dark:#E1E4E8">: </span><span style="--shiki-light:#005CC5;--shiki-dark:#79B8FF">3</span><span style="--shiki-light:#24292E;--shiki-dark:#E1E4E8">,  </span></span>
<span class="line"><span style="--shiki-light:#005CC5;--shiki-dark:#79B8FF">    "isPrimary"</span><span style="--shiki-light:#24292E;--shiki-dark:#E1E4E8">: </span><span style="--shiki-light:#005CC5;--shiki-dark:#79B8FF">true</span><span style="--shiki-light:#24292E;--shiki-dark:#E1E4E8">,  </span></span>
<span class="line"><span style="--shiki-light:#005CC5;--shiki-dark:#79B8FF">    "name"</span><span style="--shiki-light:#24292E;--shiki-dark:#E1E4E8">: </span><span style="--shiki-light:#032F62;--shiki-dark:#9ECBFF">"Manufacture of motor vehicles"</span><span style="--shiki-light:#24292E;--shiki-dark:#E1E4E8">,  </span></span>
<span class="line"><span style="--shiki-light:#005CC5;--shiki-dark:#79B8FF">    "version"</span><span style="--shiki-light:#24292E;--shiki-dark:#E1E4E8">: </span><span style="--shiki-light:#032F62;--shiki-dark:#9ECBFF">"Rev 2.1"</span><span style="--shiki-light:#24292E;--shiki-dark:#E1E4E8">  </span></span>
<span class="line"><span style="--shiki-light:#24292E;--shiki-dark:#E1E4E8">  },  </span></span>
<span class="line"><span style="--shiki-light:#24292E;--shiki-dark:#E1E4E8">  {  </span></span>
<span class="line"><span style="--shiki-light:#005CC5;--shiki-dark:#79B8FF">    "code"</span><span style="--shiki-light:#24292E;--shiki-dark:#E1E4E8">: </span><span style="--shiki-light:#032F62;--shiki-dark:#9ECBFF">"29"</span><span style="--shiki-light:#24292E;--shiki-dark:#E1E4E8">,  </span></span>
<span class="line"><span style="--shiki-light:#005CC5;--shiki-dark:#79B8FF">    "level"</span><span style="--shiki-light:#24292E;--shiki-dark:#E1E4E8">: </span><span style="--shiki-light:#005CC5;--shiki-dark:#79B8FF">2</span><span style="--shiki-light:#24292E;--shiki-dark:#E1E4E8">,  </span></span>
<span class="line"><span style="--shiki-light:#005CC5;--shiki-dark:#79B8FF">    "isPrimary"</span><span style="--shiki-light:#24292E;--shiki-dark:#E1E4E8">: </span><span style="--shiki-light:#005CC5;--shiki-dark:#79B8FF">true</span><span style="--shiki-light:#24292E;--shiki-dark:#E1E4E8">,  </span></span>
<span class="line"><span style="--shiki-light:#005CC5;--shiki-dark:#79B8FF">    "name"</span><span style="--shiki-light:#24292E;--shiki-dark:#E1E4E8">: </span><span style="--shiki-light:#032F62;--shiki-dark:#9ECBFF">"Manufacture of motor vehicles, trailers and semi-trailers"</span><span style="--shiki-light:#24292E;--shiki-dark:#E1E4E8">,  </span></span>
<span class="line"><span style="--shiki-light:#005CC5;--shiki-dark:#79B8FF">    "version"</span><span style="--shiki-light:#24292E;--shiki-dark:#E1E4E8">: </span><span style="--shiki-light:#032F62;--shiki-dark:#9ECBFF">"Rev 2.1"</span><span style="--shiki-light:#24292E;--shiki-dark:#E1E4E8">  </span></span>
<span class="line"><span style="--shiki-light:#24292E;--shiki-dark:#E1E4E8">  },  </span></span>
<span class="line"><span style="--shiki-light:#24292E;--shiki-dark:#E1E4E8">  {  </span></span>
<span class="line"><span style="--shiki-light:#005CC5;--shiki-dark:#79B8FF">    "code"</span><span style="--shiki-light:#24292E;--shiki-dark:#E1E4E8">: </span><span style="--shiki-light:#032F62;--shiki-dark:#9ECBFF">"C"</span><span style="--shiki-light:#24292E;--shiki-dark:#E1E4E8">,  </span></span>
<span class="line"><span style="--shiki-light:#005CC5;--shiki-dark:#79B8FF">    "level"</span><span style="--shiki-light:#24292E;--shiki-dark:#E1E4E8">: </span><span style="--shiki-light:#005CC5;--shiki-dark:#79B8FF">1</span><span style="--shiki-light:#24292E;--shiki-dark:#E1E4E8">,  </span></span>
<span class="line"><span style="--shiki-light:#005CC5;--shiki-dark:#79B8FF">    "isPrimary"</span><span style="--shiki-light:#24292E;--shiki-dark:#E1E4E8">: </span><span style="--shiki-light:#005CC5;--shiki-dark:#79B8FF">true</span><span style="--shiki-light:#24292E;--shiki-dark:#E1E4E8">,  </span></span>
<span class="line"><span style="--shiki-light:#005CC5;--shiki-dark:#79B8FF">    "name"</span><span style="--shiki-light:#24292E;--shiki-dark:#E1E4E8">: </span><span style="--shiki-light:#032F62;--shiki-dark:#9ECBFF">"MANUFACTURING"</span><span style="--shiki-light:#24292E;--shiki-dark:#E1E4E8">,  </span></span>
<span class="line"><span style="--shiki-light:#005CC5;--shiki-dark:#79B8FF">    "version"</span><span style="--shiki-light:#24292E;--shiki-dark:#E1E4E8">: </span><span style="--shiki-light:#032F62;--shiki-dark:#9ECBFF">"Rev 2.1"</span><span style="--shiki-light:#24292E;--shiki-dark:#E1E4E8">  </span></span>
<span class="line"><span style="--shiki-light:#24292E;--shiki-dark:#E1E4E8">  },  </span></span>
<span class="line"><span style="--shiki-light:#24292E;--shiki-dark:#E1E4E8">  {  </span></span>
<span class="line"><span style="--shiki-light:#005CC5;--shiki-dark:#79B8FF">    "code"</span><span style="--shiki-light:#24292E;--shiki-dark:#E1E4E8">: </span><span style="--shiki-light:#032F62;--shiki-dark:#9ECBFF">"28.11"</span><span style="--shiki-light:#24292E;--shiki-dark:#E1E4E8">,  </span></span>
<span class="line"><span style="--shiki-light:#005CC5;--shiki-dark:#79B8FF">    "level"</span><span style="--shiki-light:#24292E;--shiki-dark:#E1E4E8">: </span><span style="--shiki-light:#005CC5;--shiki-dark:#79B8FF">4</span><span style="--shiki-light:#24292E;--shiki-dark:#E1E4E8">,  </span></span>
<span class="line"><span style="--shiki-light:#005CC5;--shiki-dark:#79B8FF">    "isPrimary"</span><span style="--shiki-light:#24292E;--shiki-dark:#E1E4E8">: </span><span style="--shiki-light:#005CC5;--shiki-dark:#79B8FF">false</span><span style="--shiki-light:#24292E;--shiki-dark:#E1E4E8">,  </span></span>
<span class="line"><span style="--shiki-light:#005CC5;--shiki-dark:#79B8FF">    "name"</span><span style="--shiki-light:#24292E;--shiki-dark:#E1E4E8">: </span><span style="--shiki-light:#032F62;--shiki-dark:#9ECBFF">"Manufacture of engines and turbines, except aircraft, vehicle and cycle engines"</span><span style="--shiki-light:#24292E;--shiki-dark:#E1E4E8">,  </span></span>
<span class="line"><span style="--shiki-light:#005CC5;--shiki-dark:#79B8FF">    "version"</span><span style="--shiki-light:#24292E;--shiki-dark:#E1E4E8">: </span><span style="--shiki-light:#032F62;--shiki-dark:#9ECBFF">"Rev 2.1"</span><span style="--shiki-light:#24292E;--shiki-dark:#E1E4E8">  </span></span>
<span class="line"><span style="--shiki-light:#24292E;--shiki-dark:#E1E4E8">  },  </span></span>
<span class="line"><span style="--shiki-light:#24292E;--shiki-dark:#E1E4E8">  {  </span></span>
<span class="line"><span style="--shiki-light:#005CC5;--shiki-dark:#79B8FF">    "code"</span><span style="--shiki-light:#24292E;--shiki-dark:#E1E4E8">: </span><span style="--shiki-light:#032F62;--shiki-dark:#9ECBFF">"28.1"</span><span style="--shiki-light:#24292E;--shiki-dark:#E1E4E8">,  </span></span>
<span class="line"><span style="--shiki-light:#005CC5;--shiki-dark:#79B8FF">    "level"</span><span style="--shiki-light:#24292E;--shiki-dark:#E1E4E8">: </span><span style="--shiki-light:#005CC5;--shiki-dark:#79B8FF">3</span><span style="--shiki-light:#24292E;--shiki-dark:#E1E4E8">,  </span></span>
<span class="line"><span style="--shiki-light:#005CC5;--shiki-dark:#79B8FF">    "isPrimary"</span><span style="--shiki-light:#24292E;--shiki-dark:#E1E4E8">: </span><span style="--shiki-light:#005CC5;--shiki-dark:#79B8FF">false</span><span style="--shiki-light:#24292E;--shiki-dark:#E1E4E8">,  </span></span>
<span class="line"><span style="--shiki-light:#005CC5;--shiki-dark:#79B8FF">    "name"</span><span style="--shiki-light:#24292E;--shiki-dark:#E1E4E8">: </span><span style="--shiki-light:#032F62;--shiki-dark:#9ECBFF">"Manufacture of general-purpose machinery"</span><span style="--shiki-light:#24292E;--shiki-dark:#E1E4E8">,  </span></span>
<span class="line"><span style="--shiki-light:#005CC5;--shiki-dark:#79B8FF">    "version"</span><span style="--shiki-light:#24292E;--shiki-dark:#E1E4E8">: </span><span style="--shiki-light:#032F62;--shiki-dark:#9ECBFF">"Rev 2.1"</span><span style="--shiki-light:#24292E;--shiki-dark:#E1E4E8">  </span></span>
<span class="line"><span style="--shiki-light:#24292E;--shiki-dark:#E1E4E8">  },  </span></span>
<span class="line"><span style="--shiki-light:#24292E;--shiki-dark:#E1E4E8">  {  </span></span>
<span class="line"><span style="--shiki-light:#005CC5;--shiki-dark:#79B8FF">    "code"</span><span style="--shiki-light:#24292E;--shiki-dark:#E1E4E8">: </span><span style="--shiki-light:#032F62;--shiki-dark:#9ECBFF">"28"</span><span style="--shiki-light:#24292E;--shiki-dark:#E1E4E8">,  </span></span>
<span class="line"><span style="--shiki-light:#005CC5;--shiki-dark:#79B8FF">    "level"</span><span style="--shiki-light:#24292E;--shiki-dark:#E1E4E8">: </span><span style="--shiki-light:#005CC5;--shiki-dark:#79B8FF">2</span><span style="--shiki-light:#24292E;--shiki-dark:#E1E4E8">,  </span></span>
<span class="line"><span style="--shiki-light:#005CC5;--shiki-dark:#79B8FF">    "isPrimary"</span><span style="--shiki-light:#24292E;--shiki-dark:#E1E4E8">: </span><span style="--shiki-light:#005CC5;--shiki-dark:#79B8FF">false</span><span style="--shiki-light:#24292E;--shiki-dark:#E1E4E8">,  </span></span>
<span class="line"><span style="--shiki-light:#005CC5;--shiki-dark:#79B8FF">    "name"</span><span style="--shiki-light:#24292E;--shiki-dark:#E1E4E8">: </span><span style="--shiki-light:#032F62;--shiki-dark:#9ECBFF">"Manufacture of machinery and equipment n.e.c."</span><span style="--shiki-light:#24292E;--shiki-dark:#E1E4E8">,  </span></span>
<span class="line"><span style="--shiki-light:#005CC5;--shiki-dark:#79B8FF">    "version"</span><span style="--shiki-light:#24292E;--shiki-dark:#E1E4E8">: </span><span style="--shiki-light:#032F62;--shiki-dark:#9ECBFF">"Rev 2.1"</span><span style="--shiki-light:#24292E;--shiki-dark:#E1E4E8">  </span></span>
<span class="line"><span style="--shiki-light:#24292E;--shiki-dark:#E1E4E8">  }  </span></span>
<span class="line"><span style="--shiki-light:#24292E;--shiki-dark:#E1E4E8">]</span></span></code></pre>
</div>]]></description>
    </item>
    <item>
      <title>Diffbot LLM live on LMArena</title>
      <link>https://www.diffbot.com/changelog/2025-09-02-diffbot-llm-live-on-lmarena</link>
      <guid isPermaLink="true">https://www.diffbot.com/changelog/2025-09-02-diffbot-llm-live-on-lmarena</guid>
      <pubDate>Tue, 02 Sep 2025 00:00:00 GMT</pubDate>
      <description><![CDATA[<p>diffbot-small-xl is finally live on <a href="https://lmarena.ai/" target="_blank" rel="noreferrer">https://lmarena.ai/</a>! Check out: <a href="https://lmarena.ai/leaderboard/search" target="_blank" rel="noreferrer">https://lmarena.ai/leaderboard/search</a>. LMArena has open-sourced the largest repository of organic human preferences on generative models in the world. These datasets are free and open to access.</p>]]></description>
    </item>
    <item>
      <title>Getting Started with Diffbot LLM</title>
      <link>https://www.diffbot.com/changelog/2025-06-30-getting-started-with-diffbot-llm</link>
      <guid isPermaLink="true">https://www.diffbot.com/changelog/2025-06-30-getting-started-with-diffbot-llm</guid>
      <pubDate>Mon, 30 Jun 2025 00:00:00 GMT</pubDate>
      <description><![CDATA[<p>Try Diffbot LLM by dropping our hosted API URL into an existing <a href="https://github.com/diffbot/diffbot-llm-inference?tab=readme-ov-file#7-using-the-serverless-api" target="_blank" rel="noreferrer">OpenAI SDK</a> project, or on the web at <a href="https://diffy.chat/" target="_blank" rel="noreferrer">diffy.chat</a>.</p>
<p>Khuyen Tran and Bex Tuychiev also wrote up a great <a href="https://codecut.ai/diffbot-llm-real-time-knowledge-graph-citation/" target="_blank" rel="noreferrer">getting started guide</a> you can follow.</p>]]></description>
    </item>
    <item>
      <title>Label &amp; Disable Diffbot Tokens from the Dashboard</title>
      <link>https://www.diffbot.com/changelog/2025-06-30-label-disable-diffbot-tokens-from-the-dashboard</link>
      <guid isPermaLink="true">https://www.diffbot.com/changelog/2025-06-30-label-disable-diffbot-tokens-from-the-dashboard</guid>
      <pubDate>Mon, 30 Jun 2025 00:00:00 GMT</pubDate>
      <description><![CDATA[<p>You can now <a href="https://app.diffbot.com/diffbot-users/my-profile/tokens/" target="_blank" rel="noreferrer">label and disable tokens</a> from the Dashboard. And, be sure to use a child token in production environments. They're much easier to replace if compromised.</p>]]></description>
    </item>
    <item>
      <title>Diffbot on Postman</title>
      <link>https://www.diffbot.com/changelog/2025-06-10-diffbot-on-postman</link>
      <guid isPermaLink="true">https://www.diffbot.com/changelog/2025-06-10-diffbot-on-postman</guid>
      <pubDate>Tue, 10 Jun 2025 00:00:00 GMT</pubDate>
      <description><![CDATA[<p>You can now find us on <a href="https://www.postman.com/diffbotai" target="_blank" rel="noreferrer">Postman</a>! We're starting with Extract API, and moving quickly to get the rest of our APIs on Postman as well.</p>
<p><a href="https://www.postman.com/" target="_blank" rel="noreferrer">Postman</a>  is an API testing platform that eliminates the need to manually write cURL. The API testing UI is quite similar to what we have in the docs, with even more features to setup your environment, testing scripts, and more.</p>
<p>Note that our primary documentation platform will continue to live on <a href="https://docs.diffbot.com" target="_blank" rel="noreferrer">docs.diffbot.com</a>. Postman is an extension of our docs presence to make it easier for Postman users to test Diffbot APIs on their preferred platform.</p>
<p><a href="https://www.postman.com/diffbotai" target="_blank" rel="noreferrer">Fork and watch our Diffbot API collection</a>  on Postman!</p>]]></description>
    </item>
    <item>
      <title>Investment Transactions Now Searchable on Leadgraph</title>
      <link>https://www.diffbot.com/changelog/2025-06-04-investment-transactions-now-searchable-on-leadgraph</link>
      <guid isPermaLink="true">https://www.diffbot.com/changelog/2025-06-04-investment-transactions-now-searchable-on-leadgraph</guid>
      <pubDate>Wed, 04 Jun 2025 00:00:00 GMT</pubDate>
      <description><![CDATA[<p><a href="https://leadgraph.com/search/investment?days_ago=180d&amp;amount_min=1000000&amp;from=0&amp;saved_search=12534" target="_blank" rel="noreferrer">Investment Transactions</a> are now searchable on LeadGraph! This makes it possible to:<br>
&#x9;⁃	Stay on top of recent funding rounds<br>
&#x9;⁃	Find investors that have invested in companies with particular industries, keywords, company size, etc.<br>
&#x9;⁃	See funding insights for investors, industries, funding rounds, and more....</p>]]></description>
    </item>
    <item>
      <title>DOM &amp; HTML Features Added to the Extract UI</title>
      <link>https://www.diffbot.com/changelog/2025-06-02-dom-view-html-button-added-to-the-extract-ui</link>
      <guid isPermaLink="true">https://www.diffbot.com/changelog/2025-06-02-dom-view-html-button-added-to-the-extract-ui</guid>
      <pubDate>Mon, 02 Jun 2025 00:00:00 GMT</pubDate>
      <description><![CDATA[<p>We now offer additional troubleshooting tools in the <a href="https://app.diffbot.com/extract/" target="_blank" rel="noreferrer">Extract UI</a>: a DOM view of the rendered page for all data types and an HTML button for article extractions.</p>]]></description>
    </item>
    <item>
      <title>Company Reports in the KG</title>
      <link>https://www.diffbot.com/changelog/2025-05-01-company-reports-available-in-the-kg</link>
      <guid isPermaLink="true">https://www.diffbot.com/changelog/2025-05-01-company-reports-available-in-the-kg</guid>
      <pubDate>Thu, 01 May 2025 00:00:00 GMT</pubDate>
      <description><![CDATA[<p>You can now use the DQL search API to get company reports for Organizations in your database, at scale, including 10-Ks, 10-Qs, 8-K, etc. To date, we have exported <a href="https://app.diffbot.com/search/?query=type%3ACompanyReport+origins%3A%22sec.gov%22&amp;size=25" target="_blank" rel="noreferrer">~3M SEC EDGAR reports</a> . And, we have started to download reports from Forbes Global 2000 company websites as well with <a href="https://app.diffbot.com/search/?query=type%3ACompanyReport+NOT%28origins%3A%22sec.gov%22%29&amp;size=25" target="_blank" rel="noreferrer">~400K reports downloaded so far to date</a> . This data is still a work in progress so review outputs carefully, e.g. we are working to improve report titles extracted from PDFs.</p>
<p>The report types we support include <a href="https://app.diffbot.com/search/?query=type%3ACompanyReport+facet%3AreportType" target="_blank" rel="noreferrer">Current Reports, Quarterly Reports, Annual Reports, and more</a> . Please let us know if there are reports you'd like us to add to the graph.</p>]]></description>
    </item>
    <item>
      <title>Invite a User</title>
      <link>https://www.diffbot.com/changelog/2025-04-02-invite-a-user</link>
      <guid isPermaLink="true">https://www.diffbot.com/changelog/2025-04-02-invite-a-user</guid>
      <pubDate>Wed, 02 Apr 2025 00:00:00 GMT</pubDate>
      <description><![CDATA[<p>We have updated the dashboard to better support managing your team. You can now invite a user to share your primary (parent token) to manage shared bulk extraction tasks, bulk enrichment tasks, and crawl jobs. Or, designate a child token for that user so that they access Diffbot services independently using your account budget. <a href="https://app.diffbot.com/diffbot-users/invite/" target="_blank" rel="noreferrer">Check out the new features in your Dashboard UI here</a> .</p>]]></description>
    </item>
    <item>
      <title>New DQL JSON Export filter - ' &amp;filterExclude'</title>
      <link>https://www.diffbot.com/changelog/2025-04-02-new-dql-json-export-filter-filterexclude</link>
      <guid isPermaLink="true">https://www.diffbot.com/changelog/2025-04-02-new-dql-json-export-filter-filterexclude</guid>
      <pubDate>Wed, 02 Apr 2025 00:00:00 GMT</pubDate>
      <description><![CDATA[<p>When exporting data from collections via DQL, you have always had the option of specifying ONLY the fields you want to be returned in the JSON output by using the '&amp;filter=' param (i.e. <code>&amp;filter=id%20name%20homepageUri</code> added to a query like this).</p>
<div class="language- vp-adaptive-theme"><button title="Copy Code" class="copy"></button><span class="lang"></span><pre class="shiki shiki-themes github-light github-dark vp-code" tabindex="0" v-pre=""><code><span class="line"><span>https://kg.diffbot.com/kg/v3/dql?type=query&#x26;token=TOKEN&#x26;query=type%3AOrganization+types%3A%22Company%22&#x26;size=25&#x26;filter=id%20name%20homepageUri</span></span></code></pre>
</div><p>But this approach can be unwieldy if you have a long list of attributes to include or if you only want to exclude a few attributes per entity in the output.</p>
<p>Now, instead of specifying the fields you want to include, you can <strong>exclude</strong> fields you do not want returned when exporting data by using the <code>&amp;filterExclude=</code> param (i.e. <code>&amp;filterExclude=subsidiaries%20technologies%20customers</code>)</p>
<div class="language- vp-adaptive-theme"><button title="Copy Code" class="copy"></button><span class="lang"></span><pre class="shiki shiki-themes github-light github-dark vp-code" tabindex="0" v-pre=""><code><span class="line"><span>https://kg.diffbot.com/kg/v3/dql?type=query&#x26;token=TOKEN&#x26;query=type%3AOrganization+types%3A%22Company%22&#x26;size=25&#x26;filterExclude=subsidiaries%20technologies%20customers</span></span></code></pre>
</div>]]></description>
    </item>
    <item>
      <title>PDF Invoices</title>
      <link>https://www.diffbot.com/changelog/2025-04-02-pdf-invoices</link>
      <guid isPermaLink="true">https://www.diffbot.com/changelog/2025-04-02-pdf-invoices</guid>
      <pubDate>Wed, 02 Apr 2025 00:00:00 GMT</pubDate>
      <description><![CDATA[<p>We added PDF exports to invoices that match your monthly billing periods (including any overage fees owed/paid). <a href="https://app.diffbot.com/diffbot-users/billing/" target="_blank" rel="noreferrer">Try out the new Billing features here</a> .</p>
<p>Usage Analytics are still available via the <a href="https://docs.diffbot.com/reference/account" target="_blank" rel="noreferrer">Account API</a> and via the <a href="https://app.diffbot.com/diffbot-users/analytics/" target="_blank" rel="noreferrer">Diffbot Dashboard</a>.</p>]]></description>
    </item>
    <item>
      <title>type:Acquisition added to the KG</title>
      <link>https://www.diffbot.com/changelog/2025-03-17-typeacquisition-added-to-the-kg</link>
      <guid isPermaLink="true">https://www.diffbot.com/changelog/2025-03-17-typeacquisition-added-to-the-kg</guid>
      <pubDate>Mon, 17 Mar 2025 00:00:00 GMT</pubDate>
      <description><![CDATA[<p>We've added support for type:Acquisition in the graph. To see all acquisitions sorted by most to least recent see: <a href="https://app.diffbot.com/search/?query=type%3AAcquisition+revSortBy%3Adate&amp;from=0&amp;size=25" target="_blank" rel="noreferrer">https://app.diffbot.com/search/?query=type%3AAcquisition+revSortBy%3Adate&amp;from=0&amp;size=25</a></p>
<p>You can view a sample acquisition record here: <a href="https://app.diffbot.com/entity/Ezw5giKVqNZmMQ7DI97txyg" target="_blank" rel="noreferrer">https://app.diffbot.com/entity/Ezw5giKVqNZmMQ7DI97txyg</a></p>]]></description>
    </item>
    <item>
      <title>Diffbot GraphRAG LLM</title>
      <link>https://www.diffbot.com/changelog/2025-01-07-diffbot-graphrag-llm</link>
      <guid isPermaLink="true">https://www.diffbot.com/changelog/2025-01-07-diffbot-graphrag-llm</guid>
      <pubDate>Tue, 07 Jan 2025 00:00:00 GMT</pubDate>
      <description><![CDATA[<p>Recently, large language models (LLMs) have been trained with more and more data, leading to an increase in the number of parameters and the computing power needed. But, what if, instead of feeding the model more data, we purposefully trained it to rely less on its pretraining data and more on its ability to find external knowledge?</p>
<p>To test this idea, we fine-tuned LLama 3.3 70B to be an expert tool user of a real-time Knowledge Graph API, providing the first open-source implementation of a GraphRAG system that outperforms Google Gemini and ChatGPT. To learn more, see: <a href="https://github.com/diffbot/diffbot-llm-inference/" target="_blank" rel="noreferrer">https://github.com/diffbot/diffbot-llm-inference/</a>.</p>]]></description>
    </item>
    <item>
      <title>type:CompanyReport</title>
      <link>https://www.diffbot.com/changelog/2024-12-02-typecompanyreport</link>
      <guid isPermaLink="true">https://www.diffbot.com/changelog/2024-12-02-typecompanyreport</guid>
      <pubDate>Mon, 02 Dec 2024 00:00:00 GMT</pubDate>
      <description><![CDATA[<p>Company Reports are now available in the KnowledgeGraph as type:CompanyReport, and in LeadGraph in company profiles. There are two primary types of reports available:</p>
<ul>
<li>SEC Filings</li>
<li>Documents found on a company’s website, like earnings call transcripts, annual reports, ESG reports, etc.</li>
</ul>
<p>Initial coverage focuses on the top 1000, publicly-traded companies in the United States.</p>]]></description>
    </item>
    <item>
      <title>Scheduled Maintenance Window, Thurs. Nov. 14th</title>
      <link>https://www.diffbot.com/changelog/2024-11-12-scheduled-maintenance-window-thurs-nov-14th-10-am-pst-2-pm-pst</link>
      <guid isPermaLink="true">https://www.diffbot.com/changelog/2024-11-12-scheduled-maintenance-window-thurs-nov-14th-10-am-pst-2-pm-pst</guid>
      <pubDate>Tue, 12 Nov 2024 00:00:00 GMT</pubDate>
      <description><![CDATA[<p>Please Note: there will be a scheduled maintenance window, including downtime for approximately 50 minutes, on Thursday, November 14th from 10 am PST until 2 pm PST.</p>
<p>The Diffbot DevOps team will be using this time to upgrade some of the underlying infrastructure supporting global crawls. To ensure the rapid restoration of uptime and stability of the platform, we are performing this upgrade during ordinary business hours.</p>
<p>During this maintenance window, all updates to the Diffbot Knowledge Graph will be paused. Access to Organization and Person data will continue. Access to Article data will be limited, i.e. you will not be able to download new article data from the graph for your sources, nor will you be able to access article data crawled more than 5 months ago. All other graph data types, including Products &amp; Events, will be inaccessible.</p>
<p>Other Diffbot services will continue to be operational including Crawlbot, all Extraction APIs, the Bulk Extract API, the Natural Language API, and the Enhance APIs.</p>]]></description>
    </item>
    <item>
      <title>EventAPI Enhancements</title>
      <link>https://www.diffbot.com/changelog/2024-10-15-eventapi-enhancements</link>
      <guid isPermaLink="true">https://www.diffbot.com/changelog/2024-10-15-eventapi-enhancements</guid>
      <pubDate>Tue, 15 Oct 2024 00:00:00 GMT</pubDate>
      <description><![CDATA[<p>We have —</p>
<ul>
<li>Added categories for events</li>
<li>Improved rule handling for event location, date, title, and description.</li>
<li>Improved title, image, start &amp; end date, and timezone extraction.</li>
<li>Added support for extraction of location from maps as well as text.</li>
</ul>]]></description>
    </item>
    <item>
      <title>News monitoring now available on LeadGraph</title>
      <link>https://www.diffbot.com/changelog/2024-09-03-news-monitoring-now-available-on-leadgraph</link>
      <guid isPermaLink="true">https://www.diffbot.com/changelog/2024-09-03-news-monitoring-now-available-on-leadgraph</guid>
      <pubDate>Tue, 03 Sep 2024 00:00:00 GMT</pubDate>
      <description><![CDATA[<p>News on LeadGraph is a new feature that allows anyone to monitor breaking news for key risk and opportunity signals.</p>
<p>Monitor key business events like</p>
<p>New Products<br>
Partnerships<br>
Mergers &amp; Acquisitions<br>
Executive Hires<br>
Funding<br>
Private Equity<br>
Layoffs</p>
<p>For more personalized monitoring, you can also curate keyword and company lists. Unlike Diffbot APIs, LeadGraph is accessible via trial, only, for now. Reach out to us for access.</p>]]></description>
    </item>
    <item>
      <title>Improved video normalization for HTML5</title>
      <link>https://www.diffbot.com/changelog/2024-07-30-improved-video-normalization-for-html5</link>
      <guid isPermaLink="true">https://www.diffbot.com/changelog/2024-07-30-improved-video-normalization-for-html5</guid>
      <pubDate>Tue, 30 Jul 2024 00:00:00 GMT</pubDate>
      <description><![CDATA[<p>In July, we worked on better normalization for videos in HTML5 along with enhanced support for video controls and audio elements in podcasts.</p>]]></description>
    </item>
    <item>
      <title>Try the Diffbot NL API: Natural Language Processing</title>
      <link>https://www.diffbot.com/changelog/2024-06-21-try-the-diffbot-nl-api-natural-language-processing</link>
      <guid isPermaLink="true">https://www.diffbot.com/changelog/2024-06-21-try-the-diffbot-nl-api-natural-language-processing</guid>
      <pubDate>Fri, 21 Jun 2024 00:00:00 GMT</pubDate>
      <description><![CDATA[<p>Extract entities (e.g., people, organizations, products) and data about them (e.g., sentiment, relationships) from raw text. Try it via API  (<a href="https://docs.diffbot.com/reference/introduction-to-natural-language-api" target="_blank" rel="noreferrer">Introduction to Natural Language API</a>) or the Dashboard: <a href="https://app.diffbot.com/natural-language/" target="_blank" rel="noreferrer">https://app.diffbot.com/natural-language/</a></p>]]></description>
    </item>
    <item>
      <title>Removing Organization.industries &amp; Organization.diffbotClassification on January 7th</title>
      <link>https://www.diffbot.com/changelog/2024-05-24-removing-organizationindustries-organizationdiffbotclassification-on-august-30th</link>
      <guid isPermaLink="true">https://www.diffbot.com/changelog/2024-05-24-removing-organizationindustries-organizationdiffbotclassification-on-august-30th</guid>
      <pubDate>Fri, 24 May 2024 00:00:00 GMT</pubDate>
      <description><![CDATA[<p>PLEASE NOTE: We plan to deprecate Organization.industries and Organization.diffbotClassification on Jan 7th, 2025. Instructions for how to migrate to the updated Organization.categories can be found here:<br>
<a href="https://docs.diffbot.com/docs/industries-to-categories-migration-guide" target="_blank" rel="noreferrer">https://docs.diffbot.com/docs/industries-to-categories-migration-guide</a></p>]]></description>
    </item>
    <item>
      <title>Updated Organization Ontology: Organization.categories</title>
      <link>https://www.diffbot.com/changelog/2024-05-24-updated-organization-ontology-organizationcategories</link>
      <guid isPermaLink="true">https://www.diffbot.com/changelog/2024-05-24-updated-organization-ontology-organizationcategories</guid>
      <pubDate>Fri, 24 May 2024 00:00:00 GMT</pubDate>
      <description><![CDATA[<p>We've made significant improvements to our industries classifier.  This v2 classifier includes over 200 additional fine-grained categories of companies. While most of the existing categories are unchanged, you'll want to review the updated labels. The new industry taxonomy - now called Organization Categories - is documented here: <a href="https://docs.diffbot.com/docs/organization-industries" target="_blank" rel="noreferrer">https://docs.diffbot.com/docs/organization-industries</a></p>]]></description>
    </item>
    <item>
      <title>Try the Natural Language API Without Code</title>
      <link>https://www.diffbot.com/changelog/2024-05-14-try-the-natural-language-api-without-code</link>
      <guid isPermaLink="true">https://www.diffbot.com/changelog/2024-05-14-try-the-natural-language-api-without-code</guid>
      <pubDate>Tue, 14 May 2024 00:00:00 GMT</pubDate>
      <description><![CDATA[<p>Did you know Diffbot has a <strong>Natural Language API</strong>? Not only is it capable of extracting entities but also the relationships between entities in any body of text.</p>
<p>Use the NL API to build Knowledge Graphs from large corpora, or highly personalized news monitoring pipelines.</p>
<p>And starting right now, you can explore the Natural Language API in the dashboard without code. Give it a go at <a href="https://app.diffbot.com/natural-language/" target="_blank" rel="noreferrer">https://app.diffbot.com/natural-language/</a></p>]]></description>
    </item>
    <item>
      <title>Announcing the Diffbot Free Plan</title>
      <link>https://www.diffbot.com/changelog/2024-04-22-announcing-the-diffbot-free-plan</link>
      <guid isPermaLink="true">https://www.diffbot.com/changelog/2024-04-22-announcing-the-diffbot-free-plan</guid>
      <pubDate>Mon, 22 Apr 2024 00:00:00 GMT</pubDate>
      <description><![CDATA[<p><strong>We're excited to introduce a free plan for Diffbot.</strong> The free plan will replace our 2 week trial and include a generous helping of monthly credits for startups and hobbyists to get started without worrying about a monthly bill.</p>
<p><strong>What's included in the free plan?</strong></p>
<ul>
<li>Access to Extract, Knowledge Graph (DQL &amp; Enhance), and Natural Language Processing</li>
<li>10,000 monthly credits</li>
<li>API and Dashboard access</li>
</ul>
<p>To get started, <a href="https://app.diffbot.com/get-started/" target="_blank" rel="noreferrer">sign up for an account here.</a></p>]]></description>
    </item>
    <item>
      <title>🪺 We've hidden 16 easter eggs in the Diffbot Knowledge Graph.</title>
      <link>https://www.diffbot.com/changelog/2024-03-29-weve-hidden-16-easter-eggs-in-the-diffbot-knowledge-graph</link>
      <guid isPermaLink="true">https://www.diffbot.com/changelog/2024-03-29-weve-hidden-16-easter-eggs-in-the-diffbot-knowledge-graph</guid>
      <pubDate>Fri, 29 Mar 2024 00:00:00 GMT</pubDate>
      <description><![CDATA[<p>🐣 Each egg contains a clue to the next.<br>
👀 Eggs are only visible in entities on the Dashboard (link in comment), not via API.<br>
🔍 This is not school. Google/ChatGPT/query all you want.<br>
🥇 First person to eggstract all 16 easter eggs will win a lifetime personal plan and the swaggiest Diffbot swag.</p>
<p>Your first clue — <em>&quot;The Easter Bunny was first mentioned in an essay by this German physician.&quot;</em></p>
<p><strong>Notes:</strong></p>
<ul>
<li>Searching on the dashboard does not consume credits</li>
<li>Sign up for a fresh trial if your trial has expired</li>
</ul>]]></description>
    </item>
    <item>
      <title>Expansion of SEC Forms coverage in the KG</title>
      <link>https://www.diffbot.com/changelog/2024-02-09-expansion-of-sec-form-coverage-as-primary-data-source</link>
      <guid isPermaLink="true">https://www.diffbot.com/changelog/2024-02-09-expansion-of-sec-form-coverage-as-primary-data-source</guid>
      <pubDate>Fri, 09 Feb 2024 00:00:00 GMT</pubDate>
      <description><![CDATA[<p>We've recently expanded coverage of 'secForms' back to 1994 (pre XBRL introduced in 2005). Over the coming weeks and months, you will see these data flowing into organization profiles. To view examples of secForms already in the graph search for organizations that have secForms (<a href="https://app.diffbot.com/search/?query=type%3AOrganization+has%3AsecForms&amp;from=0&amp;size=25&amp;output_format=&amp;kgversion=" target="_blank" rel="noreferrer">type:Organization has:secForms</a>)</p>]]></description>
    </item>
    <item>
      <title>type:Research</title>
      <link>https://www.diffbot.com/changelog/2024-01-09-typeresearch</link>
      <guid isPermaLink="true">https://www.diffbot.com/changelog/2024-01-09-typeresearch</guid>
      <pubDate>Tue, 09 Jan 2024 00:00:00 GMT</pubDate>
      <description><![CDATA[<p>We've added <strong>type:Research</strong> to the graph. Each entity is a journal article or research publication from a validated source. Data will continue to flow for the next month or so as we integrate all of the available metadata from <a href="https://openalex.org/" target="_blank" rel="noreferrer">OpenAlex.org</a>. Future phases will combine OpenAlex metadata with the full text of the publication extracted from HTML or PDF (when it is publicly available to access) and will include data provenance and fair use details. Try a search for journal articles that include AI in the title: <a href="https://app.diffbot.com/search/?query=type%3AResearch+title%3A%22AI%22+sortBy%3Adate&amp;from=0&amp;size=25" target="_blank" rel="noreferrer">type:Research title:&quot;AI&quot; sortBy:date</a></p>]]></description>
    </item>
    <item>
      <title>RSS for any website, even if it doesn't support it</title>
      <link>https://www.diffbot.com/changelog/2023-12-09-rss-for-any-website</link>
      <guid isPermaLink="true">https://www.diffbot.com/changelog/2023-12-09-rss-for-any-website</guid>
      <pubDate>Sat, 09 Dec 2023 00:00:00 GMT</pubDate>
      <description><![CDATA[<p>If you prefer reading long-form content on RSS readers, you're gonna love this <a href="https://rss.diffbot.com/" target="_blank" rel="noreferrer">free tool</a>.</p>]]></description>
    </item>
    <item>
      <title>Convert JSON to CSV</title>
      <link>https://www.diffbot.com/changelog/2023-11-08-convert-json-to-csv</link>
      <guid isPermaLink="true">https://www.diffbot.com/changelog/2023-11-08-convert-json-to-csv</guid>
      <pubDate>Wed, 08 Nov 2023 00:00:00 GMT</pubDate>
      <description><![CDATA[<p>We built a fast JSON to CSV converter that supports automatic list detection, a column selection UI, and offline mode. Try it out <a href="https://json.diffbot.com/" target="_blank" rel="noreferrer">here</a>.</p>]]></description>
    </item>
    <item>
      <title>Diffbot ChatGPT Plug-in</title>
      <link>https://www.diffbot.com/changelog/2023-09-30-diffbot-chatgpt-plug-in</link>
      <guid isPermaLink="true">https://www.diffbot.com/changelog/2023-09-30-diffbot-chatgpt-plug-in</guid>
      <pubDate>Sat, 30 Sep 2023 00:00:00 GMT</pubDate>
      <description><![CDATA[<p>Diffbot's ChatGPT plugin is available to everyone free of charge. The only requirement is a subscription to ChatGPT Plus for access to plugins. Get the Diffbot plugin by searching for &quot;Diffbot&quot; in the ChatGPT plugin store under the GPT-4 tab. Click here to find Diffbot on <a href="https://chat.openai.com/?utm_source=The+Diffy+Cue&amp;utm_campaign=27cb44bb08-EMAIL_CAMPAIGN_2022_02_28_05_23_COPY_01&amp;utm_medium=email&amp;utm_term=0_521326e046-27cb44bb08-566468153" target="_blank" rel="noreferrer">ChatGPT</a>.</p>]]></description>
    </item>
    <item>
      <title>NL API Summarization</title>
      <link>https://www.diffbot.com/changelog/2023-09-29-nl-api-summarization</link>
      <guid isPermaLink="true">https://www.diffbot.com/changelog/2023-09-29-nl-api-summarization</guid>
      <pubDate>Fri, 29 Sep 2023 00:00:00 GMT</pubDate>
      <description><![CDATA[<p>The NL API now has the ability to summarize text. Summarization in the NL API uses the Diffbot LLM for fast inference. There is no truncation. Long documents are broken into chunks and summarized individually. A final summary is generated from these chunk summaries.</p>
<p>See the NL API summarization demo <a href="https://demo.nl.diffbot.com/?text=Facebook%20Buying%20Popular%20GIF%20Platform%20Giphy%20In%20%24400%20Million%20Deal%0A%0A%20%20%20%20One%20of%20Facebook%27s%20biggest%20acquisitions%20in%20recent%20memory%20is%20for%20a%20service%20commonly%20used%20to%20find%20GIFs%20of%20adorable%20puppies%2C%20Real%20Housewives%20and%20literal%20dumpster%20fires%20with%20broad%20metaphorical%20potential.%0A%20%20%20%20%0A%20%20%20%20Facebook%20(FB)%20said%20Friday%20that%20it%20had%20acquired%20Giphy%2C%20a%20popular%20search%20engine%20for%20short%2C%20looping%20videos%20and%20animations%20called%20GIFs.%20The%20service%20will%20become%20part%20of%20Facebook%27s%20Instagram%20team%2C%20making%20it%20easier%20for%20people%20to%20find%20relevant%20GIFs%20for%20their%20Stories%20and%20direct%20messages.%0A%20%20%20%20%0A%20%20%20%20The%20deal%20is%20reportedly%20worth%20%24400%20million%2C%20according%20to%20Axios.%20A%20Facebook%20spokesperson%20told%20CNN%20Business%20the%20company%20isn%27t%20disclosing%20the%20terms%20of%20the%20deal.%0A%20%20%20%20%0A%20%20%20%20While%20the%20rumored%20price%20tag%20may%20sound%20steep%20for%20a%20platform%20used%20to%20find%20and%20send%20GIFs%20of%20Homer%20Simpson%20disappearing%20into%20a%20bush%2C%20it%27s%20actually%20less%20than%20Giphy%20was%20valued%20at%20in%20prior%20funding%20rounds.%0A%20%20%20%20%0A%20%20%20%20Giphy%2C%20which%20was%20founded%20in%202013%2C%20already%20offers%20its%20stickers%20on%20Instagram%20Stories%20and%20its%20GIF%20search%20is%20available%20in%20Instagram%20direct%20messages.%20While%20Giphy%20has%20its%20own%20app%2C%20its%20GIFs%20are%20commonly%20used%20on%20other%20services%2C%20including%20workplace%20chat%20app%20Slack%20and%20Apple%27s%20iMessage%20feature.%20Facebook%20did%20not%20say%20whether%20it%20will%20continue%20to%20integrate%20with%20those%20other%20services.%0A%20%20%20%20%0A%20%20%20%20Giphy%20also%20has%20a%20searchable%20online%20database%20and%20will%20continue%20to%20operate%20its%20own%20library.%20Facebook%20said%20people%20will%20still%20be%20able%20to%20upload%20GIFs%20and%20%22GIPHY%27s%20creative%20community%20will%20still%20be%20able%20to%20create%20great%20content.%22" target="_blank" rel="noreferrer">here</a>.</p>]]></description>
    </item>
    <item>
      <title>Updates to Enhance Bulk Job Coverage Reports</title>
      <link>https://www.diffbot.com/changelog/2023-08-30-updates-to-enhance-bulk-job-coverage-reports</link>
      <guid isPermaLink="true">https://www.diffbot.com/changelog/2023-08-30-updates-to-enhance-bulk-job-coverage-reports</guid>
      <pubDate>Wed, 30 Aug 2023 00:00:00 GMT</pubDate>
      <description><![CDATA[<p>Enhance will now generate Coverage Reports in the background rather than during the execution of the bulkjob to speed up completion of bulkjobs. Previously, users could download the report immediately following completion of the bulkjob. Users should now poll the bulkjob status to ensure that the coverage report is generated. Status is available under content.reports[].status and should have the value of COMPLETE to indicate that the report is generated.</p>
<p>The changes are described here: <a href="https://docs.diffbot.com/reference/bulkjobstatus" target="_blank" rel="noreferrer">https://docs.diffbot.com/reference/bulkjobstatus</a><br>
*<em>Please note that this change DOES NOT affect the behavior of bulkjob results - only the coverage report.</em></p>]]></description>
    </item>
    <item>
      <title>Updated Organization.summary</title>
      <link>https://www.diffbot.com/changelog/2023-08-04-updated-organizationsummary</link>
      <guid isPermaLink="true">https://www.diffbot.com/changelog/2023-08-04-updated-organizationsummary</guid>
      <pubDate>Fri, 04 Aug 2023 00:00:00 GMT</pubDate>
      <description><![CDATA[<p>We have trained a new LLM model for the generation of Organization.summary. We can generate about ~5 million summaries per month using this new approach. We have prioritized private corporation entities to update first. These new summaries began appearing in the KG on July 7th. Please share your feedback and coverage requests with <a href="mailto:support@diffbot.com." target="_blank" rel="noreferrer">support@diffbot.com.</a></p>]]></description>
    </item>
    <item>
      <title>openHours</title>
      <link>https://www.diffbot.com/changelog/2023-06-06-openhours</link>
      <guid isPermaLink="true">https://www.diffbot.com/changelog/2023-06-06-openhours</guid>
      <pubDate>Tue, 06 Jun 2023 00:00:00 GMT</pubDate>
      <description><![CDATA[<p>We've begun to populate open hours for local businesses in the Knowledge Graph. Try searching for <a href="https://app.diffbot.com/search/?query=type%3AOrganization+location.country.name%3A%22United+States%22+industries%3A%22Hospitality+Companies%22+has%3AopenHours&amp;from=0&amp;size=25" target="_blank" rel="noreferrer">hospitality companies in the United States with openHours</a></p>]]></description>
    </item>
    <item>
      <title>Job API Documentation Now Available</title>
      <link>https://www.diffbot.com/changelog/2023-05-05-job-api-documentation-now-available</link>
      <guid isPermaLink="true">https://www.diffbot.com/changelog/2023-05-05-job-api-documentation-now-available</guid>
      <pubDate>Fri, 05 May 2023 00:00:00 GMT</pubDate>
      <description><![CDATA[<p>Job API docs:<br>
<a href="https://docs.diffbot.com/reference/job" target="_blank" rel="noreferrer">https://docs.diffbot.com/reference/job</a></p>]]></description>
    </item>
    <item>
      <title>Reversing 'types' List Order and Removing Unneeded 'types' designations</title>
      <link>https://www.diffbot.com/changelog/2023-04-11-reversing-types-list-order-in-articles-and-removing-unneeded-designations</link>
      <guid isPermaLink="true">https://www.diffbot.com/changelog/2023-04-11-reversing-types-list-order-in-articles-and-removing-unneeded-designations</guid>
      <pubDate>Tue, 11 Apr 2023 00:00:00 GMT</pubDate>
      <description><![CDATA[<p>We pushed several breaking changes to Article data, Job Posts, Discussion Threads, and Product Offers in the KG.</p>
<p><strong>FIRST</strong>:</p>
<p>The 'types' array was sorted with the most specific type first. We reversed the order to make the array consistent with 'types' in Organization, Person, and Place entities in the graph.</p>
<p><strong>SECOND</strong>:<br>
The 'types' array currently always contains GlobalIndexDiffbotEntity for Articles/Job Posts/Discussions/Product Offers. We have removed that unnecessary 'types' designation, i.e.</p>
<p>&quot;types&quot;: [<br>
&quot;Article&quot;,<br>
&quot;GlobalIndexDiffbotEntity&quot;<br>
]</p>
<p>became</p>
<p>&quot;types&quot;: [<br>
&quot;Article&quot;<br>
]</p>
<p>similar to</p>
<p>&quot;types&quot;: [<br>
&quot;Organization&quot;,<br>
&quot;Corporation&quot;,<br>
&quot;Company&quot;<br>
]</p>
<p><strong>FINALLY</strong>:<br>
Some 'types' arrays previously contained GlobalIndexComplexTypeWrapper as well. We removed that unnecessary 'types' designation, i.e.</p>
<p>&quot;types&quot;: [<br>
&quot;Discussion&quot;,<br>
&quot;GlobalIndexComplexTypeWrapper&quot;,<br>
&quot;GlobalIndexDiffbotEntity&quot;<br>
]</p>
<p>became</p>
<p>&quot;types&quot;: [<br>
&quot;Discussion&quot;<br>
]</p>]]></description>
    </item>
    <item>
      <title>Updates to Diffbot's Privacy Policy and Additional Terms</title>
      <link>https://www.diffbot.com/changelog/2023-04-11-updates-to-diffbots-privacy-policy-and-additional-terms</link>
      <guid isPermaLink="true">https://www.diffbot.com/changelog/2023-04-11-updates-to-diffbots-privacy-policy-and-additional-terms</guid>
      <pubDate>Tue, 11 Apr 2023 00:00:00 GMT</pubDate>
      <description><![CDATA[<p><strong>We've updated<a href="https://www.diffbot.com/privacy" target="_blank" rel="noreferrer">Diffbot's Privacy Policy</a>.<br>
Effective Date: April 10, 2023</strong></p>
<p>We care deeply about your privacy. Recently, we discontinued all advertising, cookie, and web beacon-based tracking on <a href="http://www.diffbot.com." target="_blank" rel="noreferrer">www.diffbot.com.</a> Instead, we use <a href="https://plausible.io/" target="_blank" rel="noreferrer">Plausible Analytics</a> for Visitor analytics and website reporting.  <em><strong>Please note: Trial Users &amp; Subscribers who create an account with Diffbot are still required to accept cookies to use the Diffbot Dashboard or Leadgraph web applications.</strong></em></p>
<p>While we've discontinued advertising, we do plan to continue to send the occasional marketing newsletter to update you on recent product launches and programs. Want to change how you receive these emails? You can update your preferences or unsubscribe from the list by contacting us at <a href="mailto:privacy@diffbot.com" target="_blank" rel="noreferrer">privacy@diffbot.com</a> or by clicking the 'unsubscribe' link in the footer of the newsletter.</p>
<p><strong>Major additions to the Diffbot Privacy Policy include:</strong></p>
<ul>
<li>a supplemental Privacy Policy for CA Residents that can be found <a href="https://www.diffbot.com/company/privacy-ca.html">here</a>.</li>
<li>a supplemental Privacy Policy for EEU Residents that can be found <a href="https://www.diffbot.com/company/privacy-eeu.html">here</a>. Please Note: <em>a section of this policy is dedicated to individuals residing in the European Economic Area (EEA), the UK, and Switzerland</em>.</li>
</ul>
<p>These additions expand the protections and rights of Users under the California Privacy Rights Act, Cal. Civ. Code §§ 1798.100 et seq. (“CPRA”), EU Data Protection Laws, other laws of the European Union or any Member State thereof, the UK GDPR, and the laws of any other country or state to which you may be subject.</p>
<p><strong>Major edits made to and removals from the policy and additional terms include</strong>:</p>
<ul>
<li>an updated list of subprocessors [most notably we added Plausible Analytics and removed all third parties supporting advertising services],</li>
<li>an updated <a href="https://www.diffbot.com/company/cookies/" target="_blank" rel="noreferrer">Cookie Policy</a>,</li>
<li>an updated DPA [contact <a href="mailto:privacy@diffbot.com" target="_blank" rel="noreferrer">privacy@diffbot.com</a> to execute the April 2023 DPA or to amend a DPA we already have on file with your organization], and</li>
<li>clarification of data collected from Visitors vs. Trial Users vs. Subscribers.</li>
</ul>]]></description>
    </item>
    <item>
      <title>Performance Enhancements &amp; Service Layer Optimizations</title>
      <link>https://www.diffbot.com/changelog/2023-03-31-performance-enhancements-service-layer-optimizations</link>
      <guid isPermaLink="true">https://www.diffbot.com/changelog/2023-03-31-performance-enhancements-service-layer-optimizations</guid>
      <pubDate>Fri, 31 Mar 2023 00:00:00 GMT</pubDate>
      <description><![CDATA[<p>In the month of March, we rolled to production two key service layer optimizations to the Diffbot Knowledge Graph architecture. Both radically reduce response time to queries and enrichment requests. The first is called the KG Engine, a look-up service that enables us to improve the performance and scalability of both Enhance and DQL and to update the graph between builds for Organization and Person data. The second is a new search indexing layer that aggregates all Articles in the KG that were crawled &amp;/or published in the last six months which reduces response times when querying recent news.</p>]]></description>
    </item>
    <item>
      <title>NAICS Classifications Updates</title>
      <link>https://www.diffbot.com/changelog/2023-02-07-naics-classifications-updates</link>
      <guid isPermaLink="true">https://www.diffbot.com/changelog/2023-02-07-naics-classifications-updates</guid>
      <pubDate>Tue, 07 Feb 2023 00:00:00 GMT</pubDate>
      <description><![CDATA[<p>The Diffbot Knowledge Graph now supports NAICS 2022 Classifications (labels and codes) in addition to NAICS 2017 Classifications. See <a href="https://docs.diffbot.com/docs/naics-classifications-in-the-diffbot-knowledge-graph" target="_blank" rel="noreferrer">NAICS docs</a> for more details.</p>]]></description>
    </item>
    <item>
      <title>Optional Parameters: DiffbotAPI (Analyze &amp; Article APIs)</title>
      <link>https://www.diffbot.com/changelog/2023-01-06-optional-parameters-diffbotapi-analyze-article-apis</link>
      <guid isPermaLink="true">https://www.diffbot.com/changelog/2023-01-06-optional-parameters-diffbotapi-analyze-article-apis</guid>
      <pubDate>Fri, 06 Jan 2023 00:00:00 GMT</pubDate>
      <description><![CDATA[<p>The following is a list of arguments you can add to a Diffbot API call to reduce processing time when calling the Article or Analyze APIs:</p>
<ul>
<li>Turn off natural language processing to provide sentiment analysis (natural language processing adds the most time to an on-demand extraction call)<div class="language- vp-adaptive-theme"><button title="Copy Code" class="copy"></button><span class="lang"></span><pre class="shiki shiki-themes github-light github-dark vp-code" tabindex="0" v-pre=""><code><span class="line"><span>&#x26;nl=false</span></span></code></pre>
</div></li>
</ul>
<br />
<ul>
<li>Many publishers of articles provide text without having to render the page. If you need full HTML outputs for each page, you will not want to use this argument.<div class="language- vp-adaptive-theme"><button title="Copy Code" class="copy"></button><span class="lang"></span><pre class="shiki shiki-themes github-light github-dark vp-code" tabindex="0" v-pre=""><code><span class="line"><span>&#x26;norender</span></span></code></pre>
</div></li>
</ul>]]></description>
    </item>
    <item>
      <title>Stock Price News Category</title>
      <link>https://www.diffbot.com/changelog/2022-11-17-stock-price-news-category</link>
      <guid isPermaLink="true">https://www.diffbot.com/changelog/2022-11-17-stock-price-news-category</guid>
      <pubDate>Thu, 17 Nov 2022 00:00:00 GMT</pubDate>
      <description><![CDATA[<p>We added support for the Stock Price News Category in the Natural Language API.</p>
<p><a href="https://demo.nl.diffbot.com/?text=Bioventus%20Inc.%E2%80%99s%20stock%20price%20rose%207.5%25%20during%20mid-day%20trading%20on%20Tuesday%20.%20The%20company%20traded%20as%20high%20as%20%247.33%20and%20last%20traded%20at%20%247.20." target="_blank" rel="noreferrer">Example</a>  or <a href="https://app.diffbot.com/search/?query=type:Article%20categories.id:%22diffbot-19%22" target="_blank" rel="noreferrer">Search</a></p>]]></description>
    </item>
    <item>
      <title>Recent Updates to the KnowledgeGraph and DQL</title>
      <link>https://www.diffbot.com/changelog/2022-10-21-kg-highlights</link>
      <guid isPermaLink="true">https://www.diffbot.com/changelog/2022-10-21-kg-highlights</guid>
      <pubDate>Fri, 21 Oct 2022 00:00:00 GMT</pubDate>
      <description><![CDATA[<p>Added Organization.suppliers to the graph, i.e. <a href="https://app.diffbot.com/search/?query=type%3AOrganization+suppliers.name%3A%22Diffbot%22&amp;from=0&amp;size=25&amp;output_format=&amp;kgversion=" target="_blank" rel="noreferrer">type:Organization suppliers.name:&quot;Diffbot&quot;</a></p>
<p>Added support for non-software technologies such as:</p>
<ul>
<li>type:Organization <a href="https://app.diffbot.com/search/?query=type%3AOrganization+technographics.technology.name%3A%223D+food+printing%22&amp;from=0&amp;size=25&amp;output_format=&amp;kgversion=" target="_blank" rel="noreferrer">technographics.technology.name:&quot;3D food printing&quot;</a> and</li>
<li><a href="https://app.diffbot.com/search/?query=type%3ATechnology+technologyCategories%3A%22Manufacturing%22&amp;size=25" target="_blank" rel="noreferrer">type:Technology technologyCategories:&quot;Manufacturing&quot;</a></li>
</ul>
<p>Added new organization industries to the graph including:</p>
<ul>
<li>Real Estate &gt; Real Estate Investment Trusts (naics: 525930)</li>
<li>Financial Services &gt; Banks &gt; Central Banks (naics: 521110)</li>
<li>Financial Services &gt; Credit Unions (naics: 522130)</li>
<li>Financial Services &gt; Money Exchange Providers (to include Foreign exchange companies, and Online remittance providers)</li>
<li>Services &gt; Laundry Companies (naics: 812320)</li>
<li>Food &gt; Dairy Companies (naics: 112120)</li>
<li>Food &gt; Cocoa Companies (naics: 311351)</li>
<li>Medical Organizations &gt; Cannabis Companies</li>
<li>Construction Companies &gt; Landscaping Services (naics: 561730)</li>
<li>Environmental Organizations &gt; Recyclable Material Companies (naics: 423930) (we separated Waste Organizations And Recycling Facilities into &quot;Waste Organizations&quot; and &quot;Recyclable Material Companies&quot;)</li>
<li>Consumer Service Companies &gt; Parking Companies (naics: 812930)</li>
<li>Hospitality Companies &gt; Adult Entertainment Clubs</li>
<li>Retailers &gt; Vending machine operators (naics: 454210)</li>
<li>Retailers &gt; Used Merchandise Retailers (naics: 459510)</li>
<li>Educational Organizations &gt; | Educational Institutions &gt; K12 Schools (to check the differences with Schools and clean in case)</li>
</ul>]]></description>
    </item>
    <item>
      <title>Organization Data Additions</title>
      <link>https://www.diffbot.com/changelog/2022-09-12-organization-data-additions</link>
      <guid isPermaLink="true">https://www.diffbot.com/changelog/2022-09-12-organization-data-additions</guid>
      <pubDate>Mon, 12 Sep 2022 00:00:00 GMT</pubDate>
      <description><![CDATA[<p>Added Place.headOfPlace and corresponding employment<br>
<a href="https://app.diffbot.com/search/?query=type%3APerson+employments.%7BisCurrent%3Atrue+categories.name%3Aor%28%22Head+of+state%22%2C+%22Head+of+government%22%29+employer.types%3A%22Country%22%7D&amp;from=0&amp;size=25&amp;output_format=&amp;kgversion=&amp;type_view=list" target="_blank" rel="noreferrer">Heads of state and heads of government</a></p>
<p>Added Organization.employeeCategories<br>
<a href="https://app.diffbot.com/search/?query=type%3AOrganization+employeeCategories.%7Bcategory%3A%22Sales%22+nbEmployees%3E2+%7D&amp;from=0&amp;size=25&amp;output_format=&amp;kgversion=" target="_blank" rel="noreferrer">Organizations with a particular number of people in a department (e.g., sales)</a></p>]]></description>
    </item>
    <item>
      <title>Coverage Reports Now Available for Bulk Enhance</title>
      <link>https://www.diffbot.com/changelog/2022-08-12-coverage-reports-now-available-for-bulk-enhance</link>
      <guid isPermaLink="true">https://www.diffbot.com/changelog/2022-08-12-coverage-reports-now-available-for-bulk-enhance</guid>
      <pubDate>Fri, 12 Aug 2022 00:00:00 GMT</pubDate>
      <description><![CDATA[<p>Coverage Reports for Bulk Enhance Jobs (CSV)<br>
The Coverage Report is a detailed summary of attribute coverage, per entity, and includes the % coverage per field in the dataset overall. The report is downloadable as a CSV from the Report API: <a href="https://kg.diffbot.com/kg/v3/enhance/bulk/" target="_blank" rel="noreferrer">https://kg.diffbot.com/kg/v3/enhance/bulk/</a><code>&amp;lt;bulkjobId&amp;gt;</code>/<code>&amp;lt;reportId&amp;gt;</code>. The report information is also included in the Enhance Bulk job Status API response: <a href="https://kg.diffbot.com/kg/v3/enhance/bulk/" target="_blank" rel="noreferrer">https://kg.diffbot.com/kg/v3/enhance/bulk/</a><code>&amp;lt;bulkjobId&amp;gt;</code>/status, and can be specified for inclusion with the parameters <code>filter</code> or <code>exportspec</code>.</p>]]></description>
    </item>
    <item>
      <title>Organization.revenue model - improved quality &amp; coverage</title>
      <link>https://www.diffbot.com/changelog/2022-07-05-organizationrevenue-model</link>
      <guid isPermaLink="true">https://www.diffbot.com/changelog/2022-07-05-organizationrevenue-model</guid>
      <pubDate>Tue, 05 Jul 2022 00:00:00 GMT</pubDate>
      <description><![CDATA[<p>We improved the Organization.revenue estimation model and extended coverage to 95+% of all organization profiles in the KG. Search: <a href="https://app.diffbot.com/search/?query=type%3AOrganization+has%3Arevenue&amp;from=0&amp;size=25&amp;output_format=" target="_blank" rel="noreferrer">type:Organization has:revenue</a> to explore all or narrow in on corporations by searching <a href="https://app.diffbot.com/search/?query=type%3ACorporation+has%3Arevenue&amp;from=0&amp;size=25&amp;output_format=" target="_blank" rel="noreferrer">type:Corporation has:revenue</a>.</p>]]></description>
    </item>
    <item>
      <title>3x More Non-Profit Organizations Identified in the KG</title>
      <link>https://www.diffbot.com/changelog/2022-05-31-added-a-new-ml-model-for-organizationisnonprofit</link>
      <guid isPermaLink="true">https://www.diffbot.com/changelog/2022-05-31-added-a-new-ml-model-for-organizationisnonprofit</guid>
      <pubDate>Tue, 31 May 2022 00:00:00 GMT</pubDate>
      <description><![CDATA[<p>We added a new ML model for Organization.isNonProfit, increasing the accuracy and coverage for <a href="https://app.diffbot.com/search/?query=type%3AOrganization+isNonProfit%3Atrue&amp;from=0&amp;size=25&amp;output_format=&amp;kgversion=" target="_blank" rel="noreferrer">non-profit organizations in the KG</a>.</p>]]></description>
    </item>
  </channel>
</rss>
