Skip to main content

List Simulations

coval simulations list [OPTIONS]
OptionTypeDefaultDescription
--filterstringFilter expression
--run-idstringFilter by run ID
--page-sizenumber50Results per page
--order-bystringSort order
Output columns: ID, STATUS, RUN, TEST CASE, AUDIO
# List all simulations
coval simulations list

# Filter by run
coval simulations list --run-id run_abc123

# Combine filters
coval simulations list --filter 'status="COMPLETED"' --run-id run_abc123

Get Simulation

coval simulations get <simulation_id>
ArgumentTypeRequiredDescription
simulation_idstringYesThe simulation ID
Returns full simulation details as JSON including transcript, status, and metadata.
coval simulations get sim_abc123

Download Audio

Download or get the audio URL for a simulation recording.
coval simulations audio <simulation_id> [OPTIONS]
ArgumentTypeRequiredDescription
simulation_idstringYesThe simulation ID
OptionTypeDescription
-o, --outputstringFile path to save audio
# Print audio URL
coval simulations audio sim_abc123

# Download audio file
coval simulations audio sim_abc123 -o recording.wav
When using -o, a progress bar shows the download status.

Delete Simulation

coval simulations delete <simulation_id>
ArgumentTypeRequiredDescription
simulation_idstringYesThe simulation ID to delete

Simulation Statuses

StatusDescription
PENDINGSimulation is created but not yet started
IN_QUEUESimulation is queued for execution
IN_PROGRESSSimulation is actively running
COMPLETEDSimulation finished successfully
FAILEDSimulation encountered an error
CANCELLEDSimulation was cancelled
DELETEDSimulation was deleted
When using --filter, use the underscore-separated enum values (e.g., status="IN_PROGRESS").