Audio Intelligence

The 0xIQ 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
    }
}

Last updated