Skip to content

List models

Fetches the list of Soniox speech-to-text models available to your workspace, including supported languages and transcription mode (async / real-time).

This example assumes using Soniox; is in scope and apiKey contains your Soniox API key.

1
2
3
4
5
6
7
using var client = new SonioxClient(apiKey);

var response = await client.Models.GetModelsAsync();

foreach (var model in response.Models)
{
}