Browse ModelsNvidiaNvidia Nemotron 3.5 Asr

Nvidia Nemotron 3.5 Asr

Nvidia Nemotron 3.5 Asr

Playground

Try it on WavespeedAI!

NVIDIA Nemotron 3.5 ASR is a fast AI speech-to-text model that transcribes multilingual audio into text with automatic language detection. Ready-to-use REST inference API for audio transcription, podcast processing, video subtitles, meeting notes, voice analytics, content localization, and professional ASR workflows with simple integration, no coldstarts, and affordable pricing.

Features

NVIDIA Nemotron 3.5 ASR

NVIDIA Nemotron 3.5 ASR is a multilingual speech-to-text model that transcribes uploaded audio into text with automatic language detection. It is designed for audio transcription, podcast processing, subtitle preparation, meeting notes, voice analytics, localization workflows, and other production-ready ASR use cases.


Why Choose This?

  • Multilingual speech recognition
    Transcribe spoken audio into text across multiple languages.

  • Automatic language detection
    Leave language on auto when you want the model to detect the spoken language automatically.

  • Simple transcription workflow
    Upload one audio file, optionally choose a language, and generate the transcript.

  • Useful for content and productivity workflows
    Suitable for podcasts, subtitles, interviews, lectures, meetings, and other spoken-content pipelines.

  • Production-ready API
    Easy to integrate into transcription, indexing, search, and accessibility workflows.


Parameters

ParameterRequiredDescription
audioYesInput audio file to transcribe.
languageNoLanguage setting for transcription. Use auto for automatic detection.

How to Use

  1. Upload your audio — provide the audio clip you want to transcribe.
  2. Choose language (optional) — leave it as auto for automatic detection, or select a fixed language if needed.
  3. Submit — run the model and get the transcription result.

Example Output

{ “output”: “Ah, the garden is blooming again just like life with a little patience and care, everything finds its time to shine.” }


Pricing

Pricing is billed per started minute of input audio.

Audio DurationCost
1s–60s$0.008
61s–120s$0.016
121s–180s$0.024

Billing Rules

  • Pricing is $0.008 per started minute
  • Audio duration is billed in started 60-second units
  • Audio shorter than 60 seconds is billed as 1 minute
  • language does not affect pricing

Best Use Cases

  • Audio transcription — Convert speech recordings into text.
  • Podcast processing — Generate transcripts for episodes and clips.
  • Subtitle preparation — Extract spoken content before caption formatting.
  • Meeting notes — Turn recorded discussions into readable text.
  • Voice analytics — Prepare transcripts for search, tagging, or downstream analysis.

Pro Tips

  • Use clean audio for better transcription accuracy.
  • Leave language as auto when the spoken language is clear and consistent.
  • Set a specific language when automatic detection may be ambiguous.
  • Short clips are useful for fast testing before processing longer recordings.
  • Review the output before publishing if the audio contains names, jargon, or strong accents.

Notes

  • audio is required.
  • language is optional.
  • Pricing is based on input audio duration and billed per started minute.
  • Better audio quality generally improves transcription quality.

  • Other NVIDIA speech and multimodal workflows — Useful when you need text, audio, video, or vision processing beyond ASR.
  • Text-to-speech workflows — Useful when you need voice generation instead of transcription.
  • Subtitle and caption workflows — Useful when you need styled subtitle output rather than plain transcript text.

Authentication

For authentication details, please refer to the Authentication Guide.

API Endpoints

Submit Task & Query Result


# Submit the task
curl --location --request POST "https://api.wavespeed.ai/api/v3/nvidia/nemotron-3.5-asr" \
--header "Content-Type: application/json" \
--header "Authorization: Bearer ${WAVESPEED_API_KEY}" \
--data-raw '{
    "language": "auto"
}'

# Get the result
curl --location --request GET "https://api.wavespeed.ai/api/v3/predictions/${requestId}/result" \
--header "Authorization: Bearer ${WAVESPEED_API_KEY}"

Parameters

Task Submission Parameters

Request Parameters

ParameterTypeRequiredDefaultRangeDescription
audiostringYes--Audio file URL to transcribe.
languagestringNoautoauto, en-US, en-GB, es-US, es-ES, de-DE, fr-FR, fr-CA, it-IT, ar-AR, ja-JP, ko-KR, pt-BR, pt-PT, ru-RU, hi-IN, zh-CN, vi-VN, he-IL, nl-NL, cs-CZ, da-DK, pl-PL, nn-NO, nb-NO, sv-SE, th-TH, tr-TR, bg-BG, el-GR, et-EE, fi-FI, hr-HR, hu-HU, lt-LT, lv-LV, ro-RO, sk-SK, uk-UA, mt-MT, sl-SILanguage spoken in the audio. Use auto for automatic detection.

Response Parameters

ParameterTypeDescription
codeintegerHTTP status code (e.g., 200 for success)
messagestringStatus message (e.g., “success”)
data.idstringUnique identifier for the prediction, Task Id
data.modelstringModel ID used for the prediction
data.outputsarrayArray of URLs to the generated content (empty when status is not completed)
data.urlsobjectObject containing related API endpoints
data.urls.getstringURL to retrieve the prediction result
data.statusstringStatus of the task: created, processing, completed, or failed
data.created_atstringISO timestamp of when the request was created (e.g., “2023-04-01T12:34:56.789Z”)
data.errorstringError message (empty if no error occurred)
data.timingsobjectObject containing timing details
data.timings.inferenceintegerInference time in milliseconds

Result Request Parameters

ParameterTypeRequiredDefaultDescription
idstringYes-Task ID

Result Response Parameters

ParameterTypeDescription
codeintegerHTTP status code (e.g., 200 for success)
messagestringStatus message (e.g., “success”)
dataobjectThe prediction data object containing all details
data.idstringUnique identifier for the prediction, the ID of the prediction to get
data.modelstringModel ID used for the prediction
data.outputsstringTranscription output.
data.urlsobjectObject containing related API endpoints
data.urls.getstringURL to retrieve the prediction result
data.statusstringStatus of the task: created, processing, completed, or failed
data.created_atstringISO timestamp of when the request was created (e.g., “2023-04-01T12:34:56.789Z”)
data.errorstringError message (empty if no error occurred)
data.timingsobjectObject containing timing details
data.timings.inferenceintegerInference time in milliseconds
© 2025 WaveSpeedAI. All rights reserved.