Skip to main content
Version: 2.0.0

Description

note

Audio Intelligence API is currently in beta. Please contact us if you would like to be added to the beta program.

The Resemble Audio Intelligence API provides deep, multifaceted insights into audio content. This endpoint allows you to analyze audio files and extract valuable information such as speaker characteristics, transcription, emotion, context, and more.

interface AudioIntelligenceRequest {
url: string
json?: boolean
}

interface AudioIntelligenceResponse {
success: boolean
item: {
description: string
created_at: string
}
}

interface AudioIntelligenceJSONResponse {
success: boolean
item: {
description: {
speaker_info: string
language: string
dialect: string
emotion: string
speaking_style: string
context: string
message: string
transcription: string
translation: string | null
}
created_at: string
}
}