Skip to main content

🧠 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

HeaderTypeRequiredDescription
x-zoom-s2t-keystringYour Reseller API key used for authorization

📥 Path Parameters

ParameterDescription
model_idThe 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 CodeDescription
204Training started successfully (no content)
400Bad request – check request format
401Unauthorized – missing or invalid token
403Forbidden – token lacks permission
404Not found – model ID does not exist
500Server 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