APIs

DataSeaAI APIs

Public link

https://api.dataseaai.com/ (opens in a new tab)

Usage with STT-1

Transcribe with curl
curl --location --request GET 'api.dataseaai.com/stt1/transcribe' \
--header 'api-key: YOUR_API_KEY \
--form 'file=@"/path/to/file"'
Transcribe with fetch
const body = new FormData
body.append("file", "path to file")
 
fetch(undefined, {
  body,
  headers: {
    "Api-Key": "YOUR API KEY",
    "Content-Type": "multipart/form-data"
  }
})
Last updated on January 13, 2023