# Get temporary transcription token Returns a temporary speech-to-text API token for client-side websocket audio transcription. The token is short-lived and should be used immediately. Requires a paid plan. Endpoint: GET /v1/transcribe/token Version: 1.0.0 Security: bearerAuth ## Response 200 fields (application/json): - `success` (boolean, required) Whether the token was retrieved successfully Example: true - `message` (string, required) Human-readable status message Example: "Token retrieved successfully." - `token` (string,null) Temporary API token for client-side transcription Example: "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9..." ## Response 401 fields (application/json): - `message` (string, required) Error message Example: "Validation failed" - `errors` (object) Detailed validation errors by field Example: {"email":["The email must be a valid email address","The email has already been taken"],"password":["The password must be at least 8 characters"],"template_name":["This field is required"]} ## Response 403 fields (application/json): - `success` (boolean, required) Whether the token was retrieved successfully Example: true - `message` (string, required) Human-readable status message Example: "Token retrieved successfully." - `token` (string,null) Temporary API token for client-side transcription Example: "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9..." ## Response 429 fields