Skip to main content

Authentication

Transcription:BatchReal-TimeDeployments:All

Your API key must be used with any interaction with the Speechmatics API to authenticate to the service. Any interaction without this key will receive a HTTP 401 - Unauthorized response.

It is recommended that you store and provide access to the API key on the principle of least privilege. If you believe that your key has been compromised, please reach out to Support.

Get your API Key

Navigate to Manage > API Keys page of the Speechmatics On-Demand Portal to create an API key. You may need to register and sign in if you haven't already.

Enter a name for your API key and then store it somewhere safe when you have generated it.

Authenticating

Your API key needs to be included in the header of all requests to the Speechmatics Jobs API. For example:

curl -X GET "https://asr.api.speechmatics.com/v2/jobs/" \
  -H "Authorization: Bearer $API_KEY"

Supported Endpoints

Speechmatics Batch SaaS supports the following endpoints for production use:

Customer typeRegionEnvironmentEndpoints
On-demandN/AN/Aasr.api.speechmatics.com
EnterpriseEUEU1eu.asr.api.speechmatics.com
eu1.asr.api.speechmatics.com
asr.api.speechmatics.com
EnterpriseEUEU2eu2.asr.api.speechmatics.com
EnterpriseUSUS1us.asr.api.speechmatics.com
us1.asr.api.speechmatics.com
EnterpriseUSUS2us2.asr.api.speechmatics.com
EnterpriseAUAU1au1.asr.api.speechmatics.com

Speechmatics Real-Time SaaS supports the following endpoints for production use:

Customer typeRegionEnvironmentEndpoints
On-demandEUEU2eu2.rt.speechmatics.com
EnterpriseEUEU1neu.rt.speechmatics.com
EnterpriseUSUS1wus.rt.speechmatics.com

API keys are replicated between all environments in the same region. Therefore, you can use any environment in a region that you are entitled to access.

All production environments are active and highly available. Multiple environments can be used to balance requests or provide a failover in the event of disruption to one environment.

Note that jobs are created in the environment corresponding to the endpoint used. You must use the same endpoint for all requests relating to a specific job.

If you attempt to use an endpoint for a region you are not contracted to use, that request will be unsuccessful. If you want to use a different region, please contact your Account Manager.

Temporary Keys

Speechmatics allows you to generate temporary keys to authenticate your requests instead of your long-lived API key. This can improve end-user experience by reducing latency, and can also reduce development effort and complexity.

info

If you are an enterprise customer and would like to use temporary keys, reach out to Support or speak to your Account Manager.

Real-Time Transcription

For Real-Time transcription, temporary keys allow the end-user to start a websocket connection with Speechmatics directly, without exposing your long-lived API key. This will reduce the latency of transcription as well as development effort.

The example request below will create a temporary key which can be used to start any number of Real-Time transcription settings for 60 seconds:

curl -L -X POST "https://mp.speechmatics.com/v1/api_keys?type=rt" \
     -H "Content-Type: application/json" \
     -H "Authorization: Bearer $API_KEY" \
     -d '{"ttl": 60 }'

Note that when starting a Real-Time transcription session in the browser, you must provide the temporary key as a part of a query parameter. See our documentation on browser based transcription.

Batch Transcription

For batch jobs, temporary keys allow your end-users to upload their audio to Speechmatics directly, without exposing your long-lived API key. In situations where you don't need to store the original audio on your server, this can reduce development effort and the costs associated with storing and transferring media files.

When you generate a temporary key with a client_ref, that temporary key will only be able to create and retrieve jobs associated with that client_ref. client_ref should be a string that uniquely identifies an end-user.

Note that temporary keys generated with a client_ref can't access the Usage Batch API endpoint and will receive a HTTP 403 - Forbidden.

danger

If your temporary key will be exposed to end-users, for example in the browser, then you must use the client_ref parameter. This will prevent one user from viewing or deleting the jobs of another user.

The example request below creates a temporary key which can be used to create and retrieve batch jobs for 60 seconds. These jobs will be associated with the reference 'USER123':

curl -L -X POST "https://mp.speechmatics.com/v1/api_keys?type=batch" \
     -H "Content-Type: application/json" \
     -H "Authorization: Bearer $API_KEY" \
     -d '{"ttl": 60, "client_ref": "USER123"}'

Temporary Key Configuration

URL query parameterRequiredDescription
typeNoString: batch (default), rt. Whether the token should be able to use the batch or RT API.
Request Body ParametersRequiredDescription
ttlYesInteger: 60-3600. The temporary key's time to live in seconds.
client_refNoString. When provided, batch tokens will only be able to create and retrieve jobs with that reference. If it is not provided, batch temporary keys will be able to retrieve any job. This parameter must be used if the temporary keys are exposed to the end-user's client to prevent a user from accessing the data of a different user. When requesting an rt temporary token, client_ref is ignored.
regionNoString: eu (default), usa, or au (Batch Transcription only). Enterprise customers can use this to specify which region the temporary key should be enabled in.