Skip to main content
GET
/
featured-scenarios
List Featured Scenarios
curl --request GET \
  --url https://api.toughtongueai.com/api/public/featured-scenarios \
  --header 'Authorization: Bearer <token>'
{
  "scenarios": [
    {
      "id": "scenario_abc123",
      "name": "Customer Objection Handling",
      "description": "Practice handling common customer objections",
      "is_public": true,
      "created_at": "2024-01-15T10:30:00Z"
    }
  ]
}
Returns globally featured scenarios. This endpoint returns public scenarios that have been marked as featured and cannot be used with org context.
{
  "scenarios": [
    {
      "id": "scenario_abc123",
      "name": "Customer Objection Handling",
      "description": "Practice handling common customer objections",
      "is_public": true,
      "created_at": "2024-01-15T10:30:00Z"
    }
  ]
}