Announcements

Announcing the Recall.ai and Speechmatics Integration

Amanda Zhu

April 20, 2024

Table of Contents

Excited to announce that Recall.ai and Speechmatics have partnered to help our customers get high-accuracy transcription from video conferencing platforms like Zoom, Google Meet, Microsoft Teams, and more.

Speechmatics is a speech technology company that offers APIs to transcribe, translate, and analyze voice data. Speechmatics is now natively integrated into Recall, so you can leverage Speechmatics’ transcription in both real-time and async use cases in a single API call.

Here is a sample code snippet that shows how to use Speechmatics natively with Recall.

curl -X POST https://api.recall.ai/api/v1/bot   \
    -H "Content-Type: application/json" \
    -H "Authorization: Token REPLACE-WITH-API-KEY" \
    -d '{
        "meeting_url": "REPLACE-WITH-MEETING-URL",
        "transcription_options": {
            "provider": "speechmatics",
            "speechmatics": { "language": "en" }
        }
    }'

It’s super simple — just specify speechmatics as the provider, and set the language.

The output looks like this:

[
  {
    "words": [
      {
        "text": "Hello",
        "start_timestamp": 1.55,
        "end_timestamp": 1.665
      },
      {
        "text": "Tony.",
        "start_timestamp": 1.87,
        "end_timestamp": 1.905
      }
    ],
    "speaker": "Amanda Zhu"
  },
  {
    "words": [
      {
        "text": "Hi",
        "start_timestamp": 2.03,
        "end_timestamp": 2.065
      },
      {
        "text": "Amanda.",
        "start_timestamp": 2.27,
        "end_timestamp": 2.305
      }             
    ],
    "speaker": "Tony Robinson"
  }
]

Next Steps

You can learn more about using the Speechmatics integration in our API docs, or check out Speechmatics’ announcement on our partnership.

To get started with the integration, get your Speechmatics API key by signing up for a free account, and get your Recall API key by booking a demo.

If you’re curious about the other ways you could get a transcript from a meeting, check out our guide on the various ways to get a transcript from Zoom.