GET
/v1/schemas/openai/chat/realtime%2Ftranscription_sessions?kind=output
Accept:
Response body
5 properties · 1 required · 1 $defs| property | type | description | constraints |
|---|---|---|---|
| client_secret* | object | Ephemeral key returned by the API. Only present when the session is created on the server via REST API. | |
| modalities | any | The set of modalities the model can respond with. To disable audio, set this to ["text"]. | |
| input_audio_format | string | The format of input audio. Options are `pcm16`, `g711_ulaw`, or `g711_alaw`. | |
| input_audio_transcription | AudioTranscriptionResponse | Configuration of the transcription model. | |
| turn_detection | object | Configuration for turn detection. Can be set to `null` to turn off. Server VAD means that the model will detect the start and end of speech based on audio volume and respond at the end of user speech. |
Validate a payload
before you spend tokensshell
$ curl -X POST https://modelschemas.com/v1/validate \
-d '{"provider":"openai","endpointId":"realtime/transcription_sessions","payload":{…}}'
→ {"valid": false, "errors": [{"path": "#", "keyword": "required", …}]}