Skip to content
Get started
GENERATION API CALLS
Audio Generation

Scenario

This page is auto-generated from model configurations. Last updated: 2026-06-03.

This reference lists all available Scenario audio generation models and their parameters. Use these parameter names when calling the Generation API.


Trim an audio file to a precise time range with sample-accurate cutting.

Model ID: model_scenario-audio-cut

Capabilities: audio2audio

LLM Markdown: https://app.scenario.com/api/models/model_scenario-audio-cut/markdown

ParameterTypeRequiredDefaultMinMaxAllowed ValuesDescription
audiofileYes----Audio to cut/trim
startTimenumberNo00--Start time in seconds. Default is 0 (beginning of audio).
endTimenumberNo-0--End time in seconds. If not specified, cuts to the end of the audio.
outputFormatstringNo---β€œ, mp3, wav, ogg, m4aOutput audio format. If not specified, the original format is preserved.

Split an audio file at one or more timestamps into ordered segments.

Model ID: model_scenario-audio-split

Capabilities: audio2audio

LLM Markdown: https://app.scenario.com/api/models/model_scenario-audio-split/markdown

ParameterTypeRequiredDefaultMinMaxAllowed ValuesDescription
audiofileYes----Audio file to split
cutPointsnumber_arrayNoβ€œ0--Sorted timestamps in seconds at which to split the audio. N cut points produce N+1 segments. Leave empty for one segment containing the full audio.
outputFormatstringNo---β€œ, mp3, wav, ogg, m4aOutput format for all segments. If not specified, the source format is preserved.
strictbooleanNofalse---If enabled, reject malformed cut points (unsorted, duplicates, out of range, or empty). If disabled, cut points are normalized automatically.