<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: Retreiving Tanscript in APIs &amp; Integrations</title>
    <link>https://community.hubspot.com/t5/APIs-Integrations/Retreiving-Tanscript/m-p/1232315#M86006</link>
    <description>&lt;P&gt;Yes, my end goal is to retrieve the diarized transcripts generated by HubSpot after my team makes a HubSpot Call.&lt;BR /&gt;&lt;BR /&gt;Here is a simplified request given a call id:&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;const myHeaders = new Headers();
myHeaders.append("Content-Type", "application/json");
myHeaders.append("Authorization", "Bearer REDACTED");

const requestOptions = {
  method: "GET",
  headers: myHeaders,
  redirect: "follow"
};

fetch("https://api.hubapi.com/crm/v3/objects/calls/273684655854?properties=hs_call_transcription_id", requestOptions)
  .then((response) =&amp;gt; response.text())
  .then((result) =&amp;gt; console.log(result))
  .catch((error) =&amp;gt; console.error(error));&lt;/LI-CODE&gt;&lt;P&gt;&lt;BR /&gt;Here is the response:&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;{
    "id": "273684655854",
    "properties": {
        "hs_call_transcription_id": null,
        "hs_createdate": "2025-12-04T20:44:50.286Z",
        "hs_lastmodifieddate": "2025-12-04T20:46:10.701Z",
        "hs_object_id": "273684655854"
    },
    "createdAt": "2025-12-04T20:44:50.286Z",
    "updatedAt": "2025-12-04T20:46:10.701Z",
    "archived": false,
    "url": REDACTED
}&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Tue, 09 Dec 2025 13:38:06 GMT</pubDate>
    <dc:creator>syrenn_dev</dc:creator>
    <dc:date>2025-12-09T13:38:06Z</dc:date>
    <item>
      <title>Retreiving Tanscript</title>
      <link>https://community.hubspot.com/t5/APIs-Integrations/Retreiving-Tanscript/m-p/1232059#M85988</link>
      <description>&lt;P&gt;Hello,&lt;BR /&gt;&lt;BR /&gt;I'm wondering if anyone has found a way to retreive the diarized transcripts that are generated by HubSpot after a HubSpot Call is made?&lt;BR /&gt;&lt;BR /&gt;I am aware and able to dowload the call recording url and can pass it to an LLM for transcription, but I'd like to avoid having to go down that path if possible.&lt;BR /&gt;&lt;BR /&gt;I've tried the suggestions from other threads (see belwo) but I can never retrieve a transcript because hs_call_transcription_id is null for every call.&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;LI-CODE lang="javascript"&gt;GET /crm/v3/objects/calls/{callId}?properties=hs_call_transcription_id&lt;/LI-CODE&gt;&lt;P&gt;then,&lt;/P&gt;&lt;LI-CODE lang="javascript"&gt;GET /crm/v3/objects/notes/{hs_call_transcription_id}?properties=hs_note_body&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;BR /&gt;Any help would be appreciated!&lt;BR /&gt;&lt;BR /&gt;related docs:&amp;nbsp;&lt;BR /&gt;&lt;A href="http://community.hubspot.com/t5/APIs-Integrations/Retrieving-call-transcripts/m-p/1226523" target="_blank"&gt;http://community.hubspot.com/t5/APIs-Integrations/Retrieving-call-transcripts/m-p/1226523&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;A href="https://community.hubspot.com/t5/APIs-Integrations/Retrieving-call-transcripts/m-p/766051" target="_blank"&gt;https://community.hubspot.com/t5/APIs-Integrations/Retrieving-call-transcripts/m-p/766051&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 08 Dec 2025 19:23:23 GMT</pubDate>
      <guid>https://community.hubspot.com/t5/APIs-Integrations/Retreiving-Tanscript/m-p/1232059#M85988</guid>
      <dc:creator>syrenn_dev</dc:creator>
      <dc:date>2025-12-08T19:23:23Z</dc:date>
    </item>
    <item>
      <title>Re: Retreiving Tanscript</title>
      <link>https://community.hubspot.com/t5/APIs-Integrations/Retreiving-Tanscript/m-p/1232116#M85996</link>
      <description>&lt;P&gt;Hi &lt;SPAN style="background: var(--ck-color-mention-background); color: var(--ck-color-mention-text);"&gt;&lt;a href="https://community.hubspot.com/t5/user/viewprofilepage/user-id/1020368"&gt;@syrenn_dev&lt;/a&gt;&lt;/SPAN&gt;,&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks for reaching to the community on this regard !&lt;span class="lia-unicode-emoji" title=":smiling_face_with_smiling_eyes:"&gt;😊&lt;/span&gt; It seems that your end goal is to retrieve the diarized transcripts generated by HubSpot after your team makes a HubSpot Call. Does that sound correct ?&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;You mentioned that using the endpoints below returns a null hs_call_transcription_id &amp;nbsp;even after attempting the steps on&lt;A href="https://community.hubspot.com/t5/APIs-Integrations/Retrieving-call-transcripts/m-p/766051" target="_blank"&gt; this thread.&amp;nbsp;&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;GET /crm/v3/objects/calls/{callId}?properties=hs_call_transcription_id&lt;/P&gt;
&lt;P&gt;then,&lt;/P&gt;
&lt;P&gt;GET /crm/v3/objects/notes/{hs_call_transcription_id}?properties=hs_note_bod&lt;/P&gt;
&lt;P&gt;&lt;BR /&gt;It might be worth to share the full call you're making ( redacting any personal information) &amp;nbsp;so the community can assist. &amp;nbsp;I'm also pinging some of our Top Community Experts: &amp;nbsp; &lt;a href="https://community.hubspot.com/t5/user/viewprofilepage/user-id/198577"&gt;@AMARIE&lt;/a&gt; &lt;SPAN style="background: var(--ck-color-mention-background); color: var(--ck-color-mention-text);"&gt;&lt;a href="https://community.hubspot.com/t5/user/viewprofilepage/user-id/146956"&gt;@BarryGrennan&lt;/a&gt;&lt;/SPAN&gt; &lt;SPAN style="background: var(--ck-color-mention-background); color: var(--ck-color-mention-text);"&gt;&lt;a href="https://community.hubspot.com/t5/user/viewprofilepage/user-id/110527"&gt;@daveroma&lt;/a&gt;&lt;/SPAN&gt; &lt;span class="lia-unicode-emoji" title=":waving_hand:"&gt;👋&lt;/span&gt; do you have any suggestions for best next steps in this case ? Thank you in advance !&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Josefina, Community Moderator&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 08 Dec 2025 22:51:06 GMT</pubDate>
      <guid>https://community.hubspot.com/t5/APIs-Integrations/Retreiving-Tanscript/m-p/1232116#M85996</guid>
      <dc:creator>JOB3</dc:creator>
      <dc:date>2025-12-08T22:51:06Z</dc:date>
    </item>
    <item>
      <title>Re: Retreiving Tanscript</title>
      <link>https://community.hubspot.com/t5/APIs-Integrations/Retreiving-Tanscript/m-p/1232315#M86006</link>
      <description>&lt;P&gt;Yes, my end goal is to retrieve the diarized transcripts generated by HubSpot after my team makes a HubSpot Call.&lt;BR /&gt;&lt;BR /&gt;Here is a simplified request given a call id:&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;const myHeaders = new Headers();
myHeaders.append("Content-Type", "application/json");
myHeaders.append("Authorization", "Bearer REDACTED");

const requestOptions = {
  method: "GET",
  headers: myHeaders,
  redirect: "follow"
};

fetch("https://api.hubapi.com/crm/v3/objects/calls/273684655854?properties=hs_call_transcription_id", requestOptions)
  .then((response) =&amp;gt; response.text())
  .then((result) =&amp;gt; console.log(result))
  .catch((error) =&amp;gt; console.error(error));&lt;/LI-CODE&gt;&lt;P&gt;&lt;BR /&gt;Here is the response:&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;{
    "id": "273684655854",
    "properties": {
        "hs_call_transcription_id": null,
        "hs_createdate": "2025-12-04T20:44:50.286Z",
        "hs_lastmodifieddate": "2025-12-04T20:46:10.701Z",
        "hs_object_id": "273684655854"
    },
    "createdAt": "2025-12-04T20:44:50.286Z",
    "updatedAt": "2025-12-04T20:46:10.701Z",
    "archived": false,
    "url": REDACTED
}&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 09 Dec 2025 13:38:06 GMT</pubDate>
      <guid>https://community.hubspot.com/t5/APIs-Integrations/Retreiving-Tanscript/m-p/1232315#M86006</guid>
      <dc:creator>syrenn_dev</dc:creator>
      <dc:date>2025-12-09T13:38:06Z</dc:date>
    </item>
    <item>
      <title>Re: Retreiving Tanscript</title>
      <link>https://community.hubspot.com/t5/APIs-Integrations/Retreiving-Tanscript/m-p/1234062#M86110</link>
      <description>&lt;P&gt;Hi &lt;a href="https://community.hubspot.com/t5/user/viewprofilepage/user-id/1020368"&gt;@syrenn_dev&lt;/a&gt;&amp;nbsp;, you’re not doing anything wrong. What you’re running into is a real platform limitation rather than a bug in your requests.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;As of how HubSpot works today in 2025, diarized call transcripts generated by HubSpot are not reliably exposed via public APIs. The hs_call_transcription_id property exists, but in many portals it remains null even when a transcript is visible in the UI. That’s because HubSpot’s call transcription pipeline is asynchronous and tightly coupled to internal note objects that are not consistently created or linked in a way the CRM APIs can access. In other words, the UI has access to the transcript, but the API often does not.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;A few important clarifications that usually explain this behavior. First, transcripts are only generated for HubSpot-native calls when call recording and AI transcription are enabled, and typically require Sales Hub or Service Hub Professional or Enterprise. Even then, diarization (speaker separation) is handled by HubSpot’s internal AI services and is not guaranteed to produce an API-accessible note.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Second, even when a transcript note exists, HubSpot does not currently guarantee that hs_call_transcription_id will be populated on the call object. This is why your second request to /crm/v3/objects/notes/{id} never works. There is simply no ID to follow.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;This is consistent with what others have reported in recent community threads and aligns with the current documentation gaps around calling data (&lt;A href="https://developers.hubspot.com/docs/api-reference/crm-calls-v3/guide" target="_blank"&gt;https://developers.hubspot.com/docs/api-reference/crm-calls-v3/guide&lt;/A&gt; )&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;HubSpot has never officially documented a supported way to fetch diarized transcripts via API, only call recordings and basic call metadata. So today, if you need programmatic access to the transcript text, the only reliable option is exactly what you’re trying to avoid: downloading the recording and transcribing it yourself. Many teams do this selectively, only for calls that matter, to keep costs down. Hopefully this saves you more debugging time chasing a property that isn’t consistently wired yet.&lt;/P&gt;</description>
      <pubDate>Mon, 15 Dec 2025 17:43:07 GMT</pubDate>
      <guid>https://community.hubspot.com/t5/APIs-Integrations/Retreiving-Tanscript/m-p/1234062#M86110</guid>
      <dc:creator>RubenBurdin</dc:creator>
      <dc:date>2025-12-15T17:43:07Z</dc:date>
    </item>
    <item>
      <title>Re: Retreiving Tanscript</title>
      <link>https://community.hubspot.com/t5/APIs-Integrations/Retreiving-Tanscript/m-p/1235446#M86226</link>
      <description>&lt;P&gt;Thanks for the thorough reply,&amp;nbsp;&lt;a href="https://community.hubspot.com/t5/user/viewprofilepage/user-id/537570"&gt;@RubenBurdin&lt;/a&gt;. I ended up using the LLM approach&lt;/P&gt;</description>
      <pubDate>Thu, 18 Dec 2025 15:33:17 GMT</pubDate>
      <guid>https://community.hubspot.com/t5/APIs-Integrations/Retreiving-Tanscript/m-p/1235446#M86226</guid>
      <dc:creator>syrenn_dev</dc:creator>
      <dc:date>2025-12-18T15:33:17Z</dc:date>
    </item>
  </channel>
</rss>

