Skip to main content
GET
/
scenarios
/
{scenario_id}
Get Scenario
curl --request GET \
  --url https://api.toughtongueai.com/api/public/scenarios/{scenario_id} \
  --header 'Authorization: Bearer <token>'
{
  "id": "scenario_abc123",
  "name": "Sales Cold Call",
  "description": "Practice pitching to VPs",
  "ai_instructions": "You are a VP of Engineering who is skeptical...",
  "is_public": true,
  "is_recording": true,
  "created_at": "2024-01-15T10:30:00Z"
}
Retrieve details for a scenario you own or have access to.
scenario_id
string
required
The unique identifier of the scenario
{
  "id": "scenario_abc123",
  "name": "Sales Cold Call",
  "description": "Practice pitching to VPs",
  "ai_instructions": "You are a VP of Engineering who is skeptical...",
  "is_public": true,
  "is_recording": true,
  "created_at": "2024-01-15T10:30:00Z"
}