/* styles.css */ body { font-family: Arial, sans-serif; background-color: #ffffff; color: #000000; } .container { max-width: 800px; margin: 0 auto; padding: 20px; } .form-group { margin-bottom: 20px; } .form-control { width: 100%; padding: 10px; font-size: 16px; border: 1px solid #ccc; } .btn { padding: 10px 20px; font-size: 16px; background-color: #d90000; color: #ffffff; border: none; cursor: pointer; } .btn:hover { padding: 10px 20px; font-size: 16px; background-color: #000000; color: #ffffff; border: none; cursor: pointer; } .mt-4 { margin-top: 20px; } .monetizado { color: #45FA15; font-weight: bold; } .nao-monetizado { color: #FF0000; font-weight: bold; } h1{ text-align: center; background-color: #D90000; color: white; font-family: "Open Sans Condesed", sans-serif; }

See Here If The Channel Is Monetized!

<?php function buscarUrlLogo($html) { $start = strpos($html, '"avatar":{"thumbnails":[{"url":"'); if ($start !== false) { $start += strlen('"avatar":{"thumbnails":[{"url":"'); $end = strpos($html, '"', $start); if ($end !== false) { $url = substr($html, $start, $end - $start); return $url; } } return null; } function verificarMonetizacao($url) { $html = file_get_contents($url); $urlLogo = buscarUrlLogo($html); if (strpos($html, '{"key":"is_monetization_enabled","value":"true"}') !== false) { return true; } else { return false; } } if ($_SERVER['REQUEST_METHOD'] === 'POST') { $url = $_POST['url']; $monetizado = verificarMonetizacao($url); $html = file_get_contents($url); $urlLogo = buscarUrlLogo($html); if ($monetizado) { echo "

The Channel Is Monetized!

"; echo "Logo do Canal"; } else { echo "

The Channel Is Not Monetized!

"; echo "Logo do Canal"; } } ?>
Monetized

How To Check If A YouTube Channel Is Monetized

Is your YouTube channel monetized? Introduction YouTube has become one of the most popular platforms for content creators to share their videos and earn money through monetization. However, not all YouTube channels are monetized, and it’s important to know whether a channel is eligible for monetization or not. In this

Read More »