Hi,
can sombody help mit to convert this cURL-Command to make it run with the HTTP-Request Node?
curl \
--request POST \
--url 'https://api.deepgram.com/v1/listen?diarize=true&punctuate=true&utterances=true' \
--header 'Authorization: Token YOUR_DEEPGRAM_API_KEY' \
--header 'content-type: audio/mp3' \
--data-binary @Premier_broken-phone_numbers.mp3 | jq -r ".results.utterances[] | \"[Speaker:\(.speaker)] \(.transcript)\""
I want to upload binary data (a mp3-recording) to deeogram with speaker diarization and structured output.
See this Link: Diarization
Tank you very much!
This is what I have done so far:
Best Regards
Sebastian