Transcribing Audio Files
The V‑Cloud API consists of two core methods:
The
/transcribe
endpoint acceptsPOST
requests containing an audio file or a zip file containing one or more audio files to transcribe. Successful/transcribe
requests return arequestid
to identify results for retrieval and tracking.The
/transcribe/result
endpoint acceptsGET
requests containing a validrequestid
. Successful/transcribe/result
requests return a URL with the results as a zip or JSON file. The format of your results depends on the options specified in the initial/transcribe
request.
The next few sections provide reference information for and examples of using each of these methods, plus an example of setting up a simple callback server and using it with the /transcribe
endpoint.