Name | Parameter | Data Type | Required | Description |
---|---|---|---|---|
Audio | query | string | Yes | The audio stream containing the speech to be transcribed |
RefId | query | string | No | Optional client-provided identifier for the request |
Tag | query | string | No | Tag to identify the request |
Name | Parameter | Data Type | Required | Description |
---|---|---|---|---|
Results | form | List<TextOutput> | No | List of generated text outputs |
ResponseStatus | form | ResponseStatus | No | Detailed response status information |
Name | Parameter | Data Type | Required | Description |
---|---|---|---|---|
Text | form | string | No | The generated text |
To override the Content-type in your clients, use the HTTP Accept Header, append the .csv suffix or ?format=csv
The following are sample HTTP requests and responses. The placeholders shown need to be replaced with actual values.
POST /csv/reply/SpeechToText HTTP/1.1
Host: test.servicestack.net
Accept: text/csv
Content-Type: text/csv
Content-Length: length
{"audio":"String","refId":"String","tag":"String"}
HTTP/1.1 200 OK Content-Type: text/csv Content-Length: length {"results":[{"text":"String"}],"responseStatus":{"errorCode":"String","message":"String","stackTrace":"String","errors":[{"errorCode":"String","fieldName":"String","message":"String","meta":{"String":"String"}}],"meta":{"String":"String"}}}