Query Batch Models
Get a list of available models for batch processing.
Endpoint
GET https://api.scriptix.io/api/v3/speech-to-text/models
Request Headers
The following headers need to be present:
| Parameter | Value | Description |
|---|---|---|
content-type | application/json | |
x-zoom-s2t-key | Scriptix Batch API Token | API key of type batch needed for authorization |
Responses
| Status code | Description | Payload |
|---|---|---|
| 200 | Models Returned | |
| 401 | Unauthorized | |
| 415 | Content Invalid | |
| 422 | Body Invalid | |
| 500 | Server Error |
Successful Querying
On successful querying an API response with the language models will be provided. You should use the Key in the response to set the language for the session.
{
"count": 3,
"total_results": 3,
"result": [
{
"bcp47": "ar",
"has_punctuation": false,
"is_private": false,
"key": "ar",
"name": "Arabic",
"id": 1,
"is_trainable": false
},
{
"bcp47": "da",
"has_punctuation": false,
"is_private": false,
"key": "da",
"name": "Danish",
"id": 2,
"is_trainable": false
},
{
"bcp47": "nl",
"has_punctuation": true,
"is_private": false,
"key": "nl",
"name": "Dutch",
"id": 3,
"is_trainable": false
}
]
}
Next Steps
- Batch Transcription API - Use models for batch processing
- Realtime Streaming API - Use models for real-time transcription
- Supported Languages - Full list of supported languages
- Custom Models - Train custom models for domain-specific vocabulary