Integrate with Gladia, a speech-to-text and audio intelligence API. Upload audio, run asynchronous transcription with diarization, translation, summarization, subtitles, sentiment analysis and PII redaction, retrieve and list transcription jobs, and trigger flows when transcriptions complete.

Changelog

3 versions
v1.1.1 Latest
  • Transcribe Audio: dropped a polling-interval setting that could never take effect (it was read from the service configuration, which only ever holds the auth fields) and raised a polling timeout shorter than one poll to one poll, so a low value no longer waits a minute just to fail on an already-expired deadline.
  • Documented that polling draws on the same request quota as every other component.
v1.1.0
  • Restricted Make API Call to the Gladia API host so an absolute URL to another host can no longer receive the account's API key.
  • Switched every component to the documented /v2/transcription routes.
  • Transcribe Audio now polls with scheduled continuations instead of blocking a worker, and reports the API's error_message on failed jobs.
  • Transcribe Audio accepts optional Custom Metadata, returned by Get Transcription and the Transcription Completed trigger.
  • The Transcription Completed trigger pages back to a persisted completion watermark, so bursts larger than one page are no longer missed and deletions cannot cause re-emits.
  • Declared the diarization, translation, summarization, sentiment analysis and subtitle result schemas so add-on results can be wired downstream.
  • Account validation no longer reports rate limits, outages or network errors as an invalid API key.
v1.0.0
  • Initial release. Adds API-key authentication via the x-gladia-key header and components for audio upload, asynchronous transcription with polling and audio-intelligence add-ons (diarization, translation, summarization, subtitles, sentiment analysis, PII redaction), retrieving a transcription, listing transcriptions, deleting a transcription, and a polling TranscriptionCompleted trigger.

Authentication

TypeDetails
API Key
API Key (text)
Sign up at

Triggers

1
Transcription Completed icon

Transcription Completed

Triggers when a Gladia transcription job reaches the 'done' status (polling). Gladia webhook callbacks are configured per-job, so polling is the reliable account-level trigger mechanism.

Actions

6
Delete Transcription icon

Delete Transcription

Permanently delete a Gladia transcription job and its data by ID. This action is irreversible.
Get Transcription icon

Get Transcription

Retrieve a single Gladia transcription job by its ID, including its status and (once done) the full transcription result.
List Transcriptions icon

List Transcriptions

List your Gladia transcription jobs (newest first), optionally filtered by status. Pages through the API 50 records at a time up to a maximum of 500 records.
Transcribe Audio icon

Transcribe Audio

Start an asynchronous Gladia transcription for an audio URL and (by default) poll until it completes. Supports diarization, translation, summarization, subtitles, sentiment analysis and PII redaction.
Make API Call icon

Make API Call

Perform an arbitrary authorized API call to Gladia. Provide a path (or full URL), method, headers, query parameters and body. The x-gladia-key header is added automatically.
Upload Audio icon

Upload Audio

Upload an audio or video file to Gladia and return a hosted audio URL that can be passed to the Transcribe Audio component.