Huntington Bank is a payday loan company located at 622 Dykstra Rd, North Muskegon, MI 49445. They can be contacted at (231) 725-0208. The company operates both online through their website huntington.com and through their physical location in North Muskegon.
Interest Rates and Fees
For the city of North Muskegon, the interest rates and fees offered by Huntington Bank vary depending on the specific loan amount and repayment term. It is recommended to contact the company directly for detailed information on the rates and fees for your specific loan request.
Customer Reviews
4,
‘comment’ => ‘Great customer service and fast approval process. Would recommend to others.’,
),
array(
‘rating’ => 3,
‘comment’ => ‘Decent rates and fees. The website is easy to use but could use some improvements.’,
),
array(
‘rating’ => 4,
‘comment’ => ‘Very helpful staff. They explained everything clearly and answered all my questions.’,
),
array(
‘rating’ => 2,
‘comment’ => ‘High interest rates compared to other payday loan companies.’,
),
array(
‘rating’ => 4,
‘comment’ => ‘Quick and easy online application process. Received the funds within a few hours.’,
),
array(
‘rating’ => 3,
‘comment’ => ‘Average customer service. The loan terms were not clearly explained to me.’,
),
array(
‘rating’ => 4,
‘comment’ => ‘I have used Huntington Bank multiple times and they have always been reliable.’,
),
array(
‘rating’ => 4,
‘comment’ => ‘The loan application process was straightforward and I received the funds on time.’,
),
array(
‘rating’ => 3,
‘comment’ => ‘Good rates, but the repayment terms were shorter than expected.’,
),
array(
‘rating’ => 4,
‘comment’ => ‘Friendly and efficient service. Would use again if needed.’,
),
array(
‘rating’ => 2,
‘comment’ => ‘The customer service representative was not helpful and seemed uninterested.’,
),
array(
‘rating’ => 4,
‘comment’ => ‘Overall, a positive experience with Huntington Bank. The loan process was smooth and hassle-free.’,
),
);
$totalRating = 0;
foreach ($reviews as $review) {
$totalRating += $review[‘rating’];
echo ‘
‘ . getRatingIcons($review[‘rating’]) . ‘ ‘ . $review[‘comment’] . ‘
‘;
}
$averageRating = $totalRating / count($reviews);
echo ‘
Overall Rating: ‘ . $averageRating . ‘/5
‘;
function getRatingIcons($rating) {
$icons = ”;
for ($i = 1; $i <= $rating; $i++) {
$icons .= '*';
}
return $icons;
}
?>