API Probe
curl --request POST \
--url https://api.vachana.ai/stt/v3/batch/jobs \
--header 'X-API-Key-ID: <api-key>'import requests
url = "https://api.vachana.ai/stt/v3/batch/jobs"
headers = {"X-API-Key-ID": "<api-key>"}
response = requests.post(url, headers=headers)
print(response.text)const options = {method: 'POST', headers: {'X-API-Key-ID': '<api-key>'}};
fetch('https://api.vachana.ai/stt/v3/batch/jobs', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));API Probe
Probe manual API playground
POST
/
stt
/
v3
/
batch
/
jobs
API Probe
curl --request POST \
--url https://api.vachana.ai/stt/v3/batch/jobs \
--header 'X-API-Key-ID: <api-key>'import requests
url = "https://api.vachana.ai/stt/v3/batch/jobs"
headers = {"X-API-Key-ID": "<api-key>"}
response = requests.post(url, headers=headers)
print(response.text)const options = {method: 'POST', headers: {'X-API-Key-ID': '<api-key>'}};
fetch('https://api.vachana.ai/stt/v3/batch/jobs', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));Overview
Probe page for manual api frontmatter.Was this page helpful?
⌘I