🧠 Start Training a Custom Language Model
Trigger the training process for a custom model that you've previously created and configured. This step compiles your uploaded data and builds the language model for later use in transcription.
⚠️ This operation is only available to users with a Reseller API token.
🔐 Required Headers
Header | Type | Required | Description |
---|---|---|---|
x-zoom-s2t-key | string | ✅ | Your Reseller API key used for authorization |
📥 Path Parameters
Parameter | Description |
---|---|
model_id | The unique identifier of the custom model |
🚀 Start Training
Endpoint
POST https://api.scriptix.io/api/v3/custom_models/{model_id}/run/
Example
curl -X POST "https://api.scriptix.io/api/v3/custom_models/abc123/run/" \
-H "x-zoom-s2t-key: YOUR_API_KEY"
✅ Response Codes
Status Code | Description |
---|---|
204 | Training started successfully (no content) |
400 | Bad request – check request format |
401 | Unauthorized – missing or invalid token |
403 | Forbidden – token lacks permission |
404 | Not found – model ID does not exist |
500 | Server error – contact support if persistent |
🧠 Use Cases
- Retrain a model after uploading new domain-specific data
- Automate model improvements during continuous deployment
- Kick off training as part of a back-office workflow
📘 Next Steps
- Overview – Understand how custom models work
- Data Management – Upload and manage training data