Get Scenario
Retrieves a scenario by ID, including its graph, prompts, and dataset row count.
GET
https://api.futureagi.com/simulate/scenarios/{scenario_id}/ Authentication
Path parameters
scenario_id
The scenario ID.
Response
200 OK id
UUID of the scenario.
name
Scenario name.
description
Scenario description.
source
Data source used to create the scenario.
scenario_type
Type:
dataset, script, or graph. dataset_id
UUID of the underlying dataset.
null if none. agent_type
Agent type:
voice or text. status
Status:
processing, completed, or failed. graph
Conversation graph structure.
{} if none. prompts
Simulator agent prompts.
role
Prompt role (e.g.,
"system"). content
Prompt text.
dataset_rows
Number of test case rows.
created_at
ISO 8601 creation timestamp.
updated_at
ISO 8601 last-modified timestamp.
Errors
401
Invalid or missing API credentials.
404
Scenario not found.
500
Unexpected server error.