Get a user live config
GET /user-live-configs/{id}
👤 Authentification Utilisateur Requise
Ce point d’accès permet de récupérer un profil de configuration live spécifique par son identifiant unique (id).
La requête ne réussira que si le profil de configuration demandé appartient à l’utilisateur actuellement authentifié. Vous recevrez une erreur 404 Not Found si vous essayez d’accéder à la configuration d’un autre utilisateur.
Authorizations
Section titled “Authorizations ”Parameters
Section titled “ Parameters ”Path Parameters
Section titled “Path Parameters ”Example
1Responses
Section titled “ Responses ”Successful response (inferred from assertions)
object
object
The unique numeric identifier for this configuration preset.
Example
1A unique, human-readable name for the preset (e.g., ‘default’, ‘low-latency’, ‘high-accuracy’).
Example
defaultEnable or disable Voice Activity Detection (VAD). If true, the engine will only process audio segments that contain speech, which can reduce processing load and improve accuracy by filtering out silence or noise.
Example
trueThe transcription mode, controlling how results are sent. Typically ‘partial’ for faster, intermediate results or ‘final’ for more accurate, completed segments.
Example
partialThe minimum amount of audio (in seconds) to buffer before sending it to the ASR model. Higher values can improve accuracy on short phrases but increase initial latency.
Example
2The maximum amount of audio (in seconds) to buffer before forcing a transcription. This acts as an upper bound on latency.
Example
4The maximum duration of silence (in seconds) to wait before considering a phrase complete and finalizing the transcription for the current buffer.
Example
4The maximum allowed delay (in seconds) between the incoming audio and the returned transcription. The system may adjust buffer sizes to stay within this limit.
Example
4The maximum number of characters to include in a single line of the returned transcription. Used for formatting the output for display.
Example
40The maximum number of lines to display in the transcription output. When this limit is reached, older lines may be removed.
Example
2Enable or disable punctuation. If true, the engine will add punctuation.
Example
trueExample
{ "data": { "created_at": "2025-11-13T17:18:46.526980+01:00", "updated_at": null, "name": "default", "vad": false, "mode": "partial", "min_buffer": 1, "max_buffer": 3, "buffer_timeout": 3, "max_delay": 4, "max_chars": 40, "max_lines": 2, "id": 2 }}