Here are the PowerShell commands to find the custom list created date and time.
$web = Get-SPWeb “http://mysites/sites”
$list = $web.lists["customlist"]
$listCreatedDate = $list.Created
$web.Dispose()
Write-Host $listCreatedDate
Happy Share Pointing :-)