List user live configs
GET /user-live-configs/
👤 Authentification Utilisateur Requise
Ce point d’accès permet à l’utilisateur actuellement authentifié de récupérer la liste complète de tous ses profils de configuration live sauvegardés.
C’est l’endpoint de base pour obtenir un aperçu de toutes les configurations disponibles avant d’en choisir une pour une session, ou pour en récupérer l’ID en vue de la modifier ou de la supprimer.
Authorizations
Section titled “Authorizations ”Parameters
Section titled “ Parameters ”Query Parameters
Section titled “Query Parameters ”The number of items to skip from the beginning of the result set. This is used for pagination, often referred to as the ‘offset’.
The maximum number of items to return in the response. This is used to control the page size.
Example
100Responses
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
trueobject
The total number of items available in the entire dataset that match the query, across all pages.
The total number of pages calculated from total_items and per_page. A client can use this to build page navigation UI.
The page number for the current set of items being returned. This is typically controlled by skip and limit or page and size query parameters.
The maximum number of items configured to be returned on a single page. This is typically controlled by a limit query parameter.
Example
{ "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 }, { "created_at": "2025-11-13T17:42:50.503270+01:00", "updated_at": null, "name": "Quiet Room Setup", "vad": false, "mode": "partial", "min_buffer": 1, "max_buffer": 2, "buffer_timeout": 3, "max_delay": 4, "max_chars": 40, "max_lines": 2, "id": 3 } ], "pagination": { "total_items": 2, "total_pages": 1, "current_page": 1, "per_page": 100 }}