From febf87c0687c55f2dbab29cafaeb02e5a741146f Mon Sep 17 00:00:00 2001 From: lgavincrl Date: Wed, 31 Dec 2025 16:29:56 +0000 Subject: [PATCH 1/9] Add Academy link to sidebar navigation --- sidebars.ts | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/sidebars.ts b/sidebars.ts index 9a81597c..da8c3c10 100644 --- a/sidebars.ts +++ b/sidebars.ts @@ -27,6 +27,12 @@ export default { href: "https://github.com/speechmatics", label: "GitHub", }, + + { + type: "link", + href: "https://github.com/speechmatics/speechmatics-academy", + label: "Academy", + }, { type: "link", href: "https://status.speechmatics.com", From ff1411df2e59267a82be24ceb8a39a4b2e8fcd71 Mon Sep 17 00:00:00 2001 From: lgavincrl Date: Wed, 31 Dec 2025 16:30:07 +0000 Subject: [PATCH 2/9] Add Academy "Hello World" link to authentication page --- docs/get-started/authentication.mdx | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/docs/get-started/authentication.mdx b/docs/get-started/authentication.mdx index 2d046335..c2866273 100644 --- a/docs/get-started/authentication.mdx +++ b/docs/get-started/authentication.mdx @@ -161,3 +161,9 @@ curl -X GET "https://eu1.asr.api.speechmatics.com/v2/jobs/" \ | `ttl` | Yes | Integer: 60-86400. The temporary key's time to live in seconds. **Note** that for security reasons, we suggest using the shortest TTL possible. | `client_ref` | No | String. When provided, `batch` tokens will only be able to create and retrieve jobs with that reference. If it is not provided, `batch` temporary keys will be able to retrieve any job. This parameter **must** be used if the temporary keys are exposed to the end-user's client to prevent a user from accessing the data of a different user. When requesting an `rt` temporary token, `client_ref` is ignored. | `region` | No | String: `eu` (default), `usa`, or `au` (Batch Transcription only). Enterprise customers can use this to specify which region the temporary key should be enabled in. + + +## Next steps + +Try the API with this "Hello World" example in the [Speechmatics Academy](https://github.com/speechmatics/speechmatics-academy/tree/main/basics/01-hello-world). + From 2ce63c9ca2e4dc250c296c316fb70f7b700338e7 Mon Sep 17 00:00:00 2001 From: lgavincrl Date: Wed, 31 Dec 2025 16:30:21 +0000 Subject: [PATCH 3/9] Update Academy description in quickstart page --- docs/get-started/quickstart.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/get-started/quickstart.mdx b/docs/get-started/quickstart.mdx index 235d1ec6..4bb37c8b 100644 --- a/docs/get-started/quickstart.mdx +++ b/docs/get-started/quickstart.mdx @@ -71,7 +71,7 @@ The easiest way to try our products is via the [web portal](https://portal.speec /> } href="https://github.com/speechmatics/speechmatics-academy" /> From bf63af2d4fcc0c14588d7948299f32bf3fb246f0 Mon Sep 17 00:00:00 2001 From: lgavincrl Date: Wed, 31 Dec 2025 16:30:29 +0000 Subject: [PATCH 4/9] Add Academy link to integrations and SDKs page --- docs/integrations-and-sdks/index.mdx | 3 +++ 1 file changed, 3 insertions(+) diff --git a/docs/integrations-and-sdks/index.mdx b/docs/integrations-and-sdks/index.mdx index 53ae3cb6..e2f0d1ee 100644 --- a/docs/integrations-and-sdks/index.mdx +++ b/docs/integrations-and-sdks/index.mdx @@ -107,3 +107,6 @@ Use an SDK if you want to call Speechmatics directly from your own services or a href="https://github.com/speechmatics/speechmatics-python-sdk/tree/main/sdk/tts" /> + +## Next steps +For working examples, integrations, and templates go to [Speechmatics Academy](https://github.com/speechmatics/speechmatics-academy). \ No newline at end of file From 52df0b2b958880409c0254e94255dc45ae814a88 Mon Sep 17 00:00:00 2001 From: lgavincrl Date: Wed, 31 Dec 2025 16:30:54 +0000 Subject: [PATCH 5/9] Add Academy link to audio intel pages --- .../batch/speech-intelligence/sentiment-analysis.mdx | 4 ++++ .../batch/speech-intelligence/summarization.mdx | 4 ++++ .../batch/speech-intelligence/topic-detection.mdx | 4 ++++ 3 files changed, 12 insertions(+) diff --git a/docs/speech-to-text/batch/speech-intelligence/sentiment-analysis.mdx b/docs/speech-to-text/batch/speech-intelligence/sentiment-analysis.mdx index 145a9fcd..4cbcf44c 100644 --- a/docs/speech-to-text/batch/speech-intelligence/sentiment-analysis.mdx +++ b/docs/speech-to-text/batch/speech-intelligence/sentiment-analysis.mdx @@ -154,3 +154,7 @@ If Sentiment fails, the transcription process will complete but the Sentiment wi "results": [...] } ``` + +## Next steps + +Learn how to use sentiment analysis from examples in the [Speechmatics Academy](https://github.com/speechmatics/speechmatics-academy/tree/main/basics/04-audio-intelligence). diff --git a/docs/speech-to-text/batch/speech-intelligence/summarization.mdx b/docs/speech-to-text/batch/speech-intelligence/summarization.mdx index 2ef38943..9eb2030e 100644 --- a/docs/speech-to-text/batch/speech-intelligence/summarization.mdx +++ b/docs/speech-to-text/batch/speech-intelligence/summarization.mdx @@ -220,3 +220,7 @@ A summary of a Technical Customer Support Call. + +## Next steps + +Learn how to use summarization from examples in the [Speechmatics Academy](https://github.com/speechmatics/speechmatics-academy/tree/main/basics/04-audio-intelligence). \ No newline at end of file diff --git a/docs/speech-to-text/batch/speech-intelligence/topic-detection.mdx b/docs/speech-to-text/batch/speech-intelligence/topic-detection.mdx index 1a5d6934..682df2a5 100644 --- a/docs/speech-to-text/batch/speech-intelligence/topic-detection.mdx +++ b/docs/speech-to-text/batch/speech-intelligence/topic-detection.mdx @@ -233,3 +233,7 @@ In the event that Topics fails, the transcription process will complete but the "results": [...] } ``` + +## Next steps + +Learn how to use topic detection from examples in the [Speechmatics Academy](https://github.com/speechmatics/speechmatics-academy/tree/main/basics/04-audio-intelligence). From 6e228bc4518d33096c2dd202502f8236f60f5cb8 Mon Sep 17 00:00:00 2001 From: lgavincrl Date: Fri, 2 Jan 2026 10:20:34 +0000 Subject: [PATCH 6/9] Adjust wording for next steps --- docs/integrations-and-sdks/index.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/integrations-and-sdks/index.mdx b/docs/integrations-and-sdks/index.mdx index e2f0d1ee..69685e94 100644 --- a/docs/integrations-and-sdks/index.mdx +++ b/docs/integrations-and-sdks/index.mdx @@ -109,4 +109,4 @@ Use an SDK if you want to call Speechmatics directly from your own services or a ## Next steps -For working examples, integrations, and templates go to [Speechmatics Academy](https://github.com/speechmatics/speechmatics-academy). \ No newline at end of file +Go to the [Speechmatics Academy](https://github.com/speechmatics/speechmatics-academy) for working examples, integrations, and templates. \ No newline at end of file From 0041b36802709276be6eee3774a4003508ca7c05 Mon Sep 17 00:00:00 2001 From: lgavincrl Date: Fri, 2 Jan 2026 10:21:13 +0000 Subject: [PATCH 7/9] Add Academy link to translation --- docs/speech-to-text/features/translation.mdx | 1 + 1 file changed, 1 insertion(+) diff --git a/docs/speech-to-text/features/translation.mdx b/docs/speech-to-text/features/translation.mdx index 1c8de3d3..7ab49ef7 100644 --- a/docs/speech-to-text/features/translation.mdx +++ b/docs/speech-to-text/features/translation.mdx @@ -373,5 +373,6 @@ Be aware of these limitations: ## Next Steps +- Visit the [Speechmatics Academy](https://github.com/speechmatics/speechmatics-academy/tree/main/basics/05-translation) to learn how to use translation in your projects. - [Try the portal](https://portal.speechmatics.com/) to see how translation works with your own audio. - Use [diarization](/speech-to-text/features/diarization) to enhance your translations with speaker information. From 03690eac3728d47d3cf7158f8b94154dad6f82e8 Mon Sep 17 00:00:00 2001 From: lgavincrl Date: Fri, 2 Jan 2026 10:21:49 +0000 Subject: [PATCH 8/9] Simplify next steps in TTS quickstart with Academy and Reddit links --- docs/text-to-speech/quickstart.mdx | 11 ++--------- 1 file changed, 2 insertions(+), 9 deletions(-) diff --git a/docs/text-to-speech/quickstart.mdx b/docs/text-to-speech/quickstart.mdx index a107fd8a..71b806fb 100644 --- a/docs/text-to-speech/quickstart.mdx +++ b/docs/text-to-speech/quickstart.mdx @@ -225,12 +225,5 @@ You can submit feedback, bug reports, or feature requests through the Speechmati ## Next steps -Ready to build something amazing with text to speech? We'd love to hear about your project and help you succeed. - -**Get in touch with us:** -- Share your feedback and feature requests -- Ask questions about implementation -- Discuss enterprise pricing and custom voices -- Report any issues or bugs you encounter - -[Contact our team](https://support.speechmatics.com) or join our developer community (https://www.reddit.com/r/Speechmatics) to connect with other builders using text to speech. +- Visit the [Speechmatics Academy](https://github.com/speechmatics/speechmatics-academy/tree/main/basics/03-text-to-speech) for examples. +- Share and discuss your project with the community on [Reddit](https://www.reddit.com/r/Speechmatics). \ No newline at end of file From ac3179718821c315c7771658c0b838664d505211 Mon Sep 17 00:00:00 2001 From: lgavincrl Date: Mon, 5 Jan 2026 10:41:47 +0000 Subject: [PATCH 9/9] Update docs/get-started/quickstart.mdx Co-authored-by: Matt Nemitz --- docs/get-started/quickstart.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/get-started/quickstart.mdx b/docs/get-started/quickstart.mdx index 4bb37c8b..15ad5112 100644 --- a/docs/get-started/quickstart.mdx +++ b/docs/get-started/quickstart.mdx @@ -71,7 +71,7 @@ The easiest way to try our products is via the [web portal](https://portal.speec /> } href="https://github.com/speechmatics/speechmatics-academy" />