Create a webhook for a transcription
To create a webhook, useset_webhook() on the transcription config. The URL must be accessible from AssemblyAI’s servers.
Use submit() instead of transcribe() to create a transcription without waiting for it to complete.
Handle webhook deliveries
When the transcript is ready, AssemblyAI will send aPOST HTTP request to the URL that you specified.
Sender’s IP addressAssemblyAI sends all webhook deliveries from the same IP address, 44.238.19.20.
Delivery payload
The webhook delivery payload contains a JSON object with the following properties:Authenticate webhook deliveries
You can authenticate webhook deliveries from AssemblyAI by including a custom HTTP header in the request. To add an authentication header, include the auth header name and value inset_webhook().