Satus
  • Blog
  • Features
  • Docs
  • Pricing
  • Login
  • Sign Up

Terms of ServicePrivacy PolicyImprint

© 2025 Satus.dev - All Rights Reserved

  • Submitting a Job
  • Retrieving Results

  • Audio
  • Video

Audio

Learn how to use the Satus API to process audio files.


POST
https://api.satus.dev/submit/audio/file

Request Body

file

file

required

The audio file to process.


language

string

optional

default: "auto"

The language of the audio file.


diarization

integer, boolean

optional

default: false

The number of speakers to detect. If set to 0 (or true), the number of speakers will be automatically detected. If set to -1 (or false), speaker diarization will be disabled.


chapterize

boolean

optional

default: false

Whether to segment the audio into individual chapters.


summarize

boolean

optional

default: false

Whether to generate a text summary of the audio.


disfluency

boolean

optional

default: false

Wether to tag disfluencies in the transcript.


profanity

boolean

optional

default: false

Wether to tag profanity in the transcript.


webhook

string

optional

default: none

The webhook-id to which the result should be sent upon completion.


share

boolean

optional

default: false

Whether to share the data of this result with Satus to help improve our algorithms (Opt-in).


Response Body

{
id: "job_A_XXXX"
options: {
language: "auto"
diarization: "false"
chapterize: "false"
summarize: "false"
disfluency: "false"
profanity: "false"
webhook: "none"
share: "false"
}
}