{"id":263,"date":"2025-03-12T19:58:38","date_gmt":"2025-03-12T19:58:38","guid":{"rendered":"https:\/\/youtube-thumbnail-download.org\/?page_id=263"},"modified":"2025-05-17T06:31:04","modified_gmt":"2025-05-17T06:31:04","slug":"youtube-channel-id-extractor","status":"publish","type":"page","link":"https:\/\/youtube-thumbnail-download.org\/ar\/youtube-channel-id-extractor\/","title":{"rendered":"\u0645\u0633\u062a\u062e\u0631\u062c \u0645\u0639\u0631\u0651\u0641 \u0642\u0646\u0627\u0629 \u064a\u0648\u062a\u064a\u0648\u0628"},"content":{"rendered":"    <style>\n        \/* Paste all the CSS from yt-extractor-style.css here *\/\n        @import url('https:\/\/fonts.googleapis.com\/css2?family=Poppins:wght@300;400;600;700&display=swap');\n\n        :root {\n            --yt-red: #FF0000;\n            --yt-dark: #282828;\n            --yt-light-dark: #3f3f3f;\n            --yt-grey: #aaaaaa;\n            --yt-light-grey: #f0f0f0;\n            --yt-white: #ffffff;\n            --yt-success: #2ecc71;\n            --yt-warning: #f1c40f;\n            --yt-glow-color: rgba(255, 0, 0, 0.5); \/* Red glow *\/\n        }\n\n        .yt-extractor-unique-wrapper {\n            font-family: 'Poppins', sans-serif;\n            max-width: 650px;\n            margin: 40px auto;\n            background: linear-gradient(135deg, var(--yt-dark) 0%, #1a1a1a 100%);\n            border-radius: 15px;\n            padding: 30px 40px;\n            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);\n            color: var(--yt-light-grey);\n            overflow: hidden;\n            position: relative;\n        }\n\n        .yt-extractor-unique-wrapper::before {\n            content: '';\n            position: absolute;\n            top: -50%;\n            left: -50%;\n            width: 200%;\n            height: 200%;\n            background: radial-gradient(circle, rgba(255, 255, 255, 0.03) 1px, transparent 1px);\n            background-size: 20px 20px;\n            opacity: 0.3;\n            animation: subtleMovement 20s linear infinite;\n            z-index: 0;\n        }\n\n        @keyframes subtleMovement {\n            0% { transform: translate(0, 0); }\n            50% { transform: translate(10px, 10px); }\n            100% { transform: translate(0, 0); }\n        }\n\n        .yt-extractor-unique-content {\n            position: relative;\n            z-index: 1;\n        }\n\n\n        .yt-extractor-header-unique {\n            text-align: center;\n            margin-bottom: 30px;\n            border-bottom: 1px solid var(--yt-light-dark);\n            padding-bottom: 20px;\n        }\n\n        .yt-extractor-header-unique h1 {\n            font-size: 2.2rem;\n            font-weight: 700;\n            color: var(--yt-white);\n            margin-bottom: 5px;\n            display: flex;\n            align-items: center;\n            justify-content: center;\n            gap: 10px;\n        }\n\n        .yt-icon svg {\n            width: 32px;\n            height: auto; \/* Maintain aspect ratio *\/\n            fill: var(--yt-red);\n            flex-shrink: 0; \/* Prevent icon from shrinking *\/\n        }\n\n        .yt-extractor-header-unique p {\n            font-size: 0.95rem;\n            color: var(--yt-grey);\n            font-weight: 300;\n        }\n\n        .yt-extractor-form-unique {\n            display: flex;\n            flex-direction: column;\n            align-items: center;\n            gap: 20px;\n            margin-bottom: 30px;\n        }\n\n        .yt-input-group-unique {\n            position: relative;\n            width: 100%;\n        }\n\n        .yt-input-icon {\n            position: absolute;\n            top: 50%;\n            left: 18px;\n            transform: translateY(-50%);\n            color: var(--yt-grey);\n            font-size: 1.2em;\n            pointer-events: none;\n            z-index: 2; \/* Ensure icon is above input background *\/\n        }\n         \/* Simple Link SVG Icon *\/\n        .yt-input-icon svg {\n            width: 18px;\n            height: 18px;\n            fill: currentColor;\n            vertical-align: middle; \/* Align better with text *\/\n        }\n\n        .yt-extractor-form-unique .yt-form-control-unique {\n            width: 100%;\n            padding: 15px 20px 15px 50px; \/* Space for icon *\/\n            border-radius: 50px;\n            border: 1px solid var(--yt-light-dark);\n            background-color: var(--yt-dark);\n            color: var(--yt-white);\n            font-size: 1rem;\n            transition: all 0.3s ease;\n            box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.2);\n            box-sizing: border-box; \/* Include padding and border in width *\/\n        }\n\n        .yt-extractor-form-unique .yt-form-control-unique::placeholder {\n            color: var(--yt-grey);\n            font-weight: 300;\n        }\n\n        .yt-extractor-form-unique .yt-form-control-unique:focus {\n            outline: none;\n            border-color: var(--yt-red);\n            background-color: #1e1e1e;\n            box-shadow: 0 0 15px var(--yt-glow-color), inset 0 2px 4px rgba(0, 0, 0, 0.2);\n        }\n\n        .yt-extractor-form-unique .btn-extract-unique {\n            background: linear-gradient(45deg, var(--yt-red), #ff3c3c);\n            color: var(--yt-white);\n            border: none;\n            border-radius: 50px;\n            padding: 14px 45px;\n            font-weight: 600;\n            font-size: 1.1rem;\n            cursor: pointer;\n            transition: all 0.3s ease;\n            box-shadow: 0 4px 15px rgba(255, 0, 0, 0.3);\n            text-transform: uppercase;\n            letter-spacing: 1px;\n            line-height: 1.5; \/* Ensure consistent height *\/\n        }\n\n        .yt-extractor-form-unique .btn-extract-unique:hover {\n            transform: translateY(-2px);\n            box-shadow: 0 6px 20px rgba(255, 0, 0, 0.5);\n            background: linear-gradient(45deg, #ff3c3c, var(--yt-red));\n        }\n\n        .yt-extractor-form-unique .btn-extract-unique:active {\n            transform: translateY(0);\n            box-shadow: 0 2px 10px rgba(255, 0, 0, 0.3);\n        }\n\n        \/* --- Result Area --- *\/\n        .yt-extractor-result-unique {\n            margin-top: 30px;\n            padding: 25px;\n            background-color: rgba(255, 255, 255, 0.05);\n            border-radius: 10px;\n            border: 1px solid var(--yt-light-dark);\n            text-align: center;\n            animation: fadeIn 0.5s ease-out;\n            \/* Initially hidden, shown by JS or PHP *\/\n            display: none;\n        }\n\n         \/* --- Error Message --- *\/\n        .yt-error-message-unique {\n            margin-top: 20px;\n            padding: 15px;\n            background-color: rgba(255, 0, 0, 0.1);\n            border: 1px solid rgba(255, 0, 0, 0.3);\n            border-radius: 8px;\n            color: #ff8a8a;\n            text-align: center;\n            font-weight: 400;\n            animation: fadeIn 0.5s ease-out;\n             \/* Initially hidden, shown if error exists *\/\n            display: none;\n        }\n\n\n        @keyframes fadeIn {\n            from { opacity: 0; transform: translateY(10px); }\n            to { opacity: 1; transform: translateY(0); }\n        }\n\n        .yt-extractor-result-unique .result-label {\n            display: block;\n            color: var(--yt-grey);\n            font-size: 0.9rem;\n            margin-bottom: 10px;\n            text-transform: uppercase;\n            letter-spacing: 0.5px;\n        }\n\n        .yt-channel-id-display {\n            font-family: 'Courier New', Courier, monospace;\n            background-color: var(--yt-dark);\n            color: var(--yt-success);\n            padding: 12px 18px;\n            border-radius: 6px;\n            border: 1px solid var(--yt-light-dark);\n            font-size: 1.1rem;\n            word-break: break-all;\n            margin-bottom: 20px;\n            text-align: center;\n            user-select: all;\n            box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.2);\n            min-height: 48px; \/* Ensure consistent height even if empty initially *\/\n            line-height: 1.5; \/* Improve vertical alignment *\/\n            display: flex; \/* Center text vertically *\/\n            align-items: center;\n            justify-content: center;\n        }\n\n        .yt-result-actions {\n            display: flex;\n            justify-content: center;\n            flex-wrap: wrap; \/* Allow buttons to wrap on smaller screens *\/\n            gap: 15px;\n            margin-top: 15px;\n        }\n\n        .yt-result-actions .btn-action {\n            background: var(--yt-light-dark);\n            color: var(--yt-light-grey);\n            border: none;\n            border-radius: 25px;\n            padding: 10px 22px; \/* Slightly larger padding *\/\n            font-size: 0.9rem;\n            font-weight: 600;\n            cursor: pointer;\n            transition: all 0.2s ease;\n            display: inline-flex;\n            align-items: center;\n            gap: 8px;\n            text-decoration: none; \/* Remove underline if used as link *\/\n        }\n\n         .yt-result-actions .btn-action svg {\n             width: 14px;\n             height: 14px;\n             fill: currentColor;\n         }\n\n\n        .yt-result-actions .btn-action.btn-copy-unique:hover {\n            background-color: var(--yt-success);\n            color: var(--yt-white);\n        }\n        .yt-result-actions .btn-action.btn-copy-unique:active {\n             background-color: #27ae60; \/* Darker green *\/\n        }\n\n        .yt-result-actions .btn-action.btn-clear-unique:hover {\n            background-color: var(--yt-warning);\n            color: var(--yt-dark);\n        }\n        .yt-result-actions .btn-action.btn-clear-unique:active {\n             background-color: #d3a00c; \/* Darker yellow *\/\n        }\n\n        \/* Tooltip for Copy Feedback *\/\n        .yt-copy-tooltip {\n            position: relative;\n            display: inline-block; \/* Needed for tooltip positioning *\/\n        }\n\n        .yt-copy-tooltip .tooltiptext {\n            visibility: hidden;\n            width: 100px;\n            background-color: var(--yt-success);\n            color: var(--yt-white);\n            text-align: center;\n            border-radius: 6px;\n            padding: 5px 0;\n            position: absolute;\n            z-index: 10; \/* Ensure tooltip is above other elements *\/\n            bottom: 135%; \/* Position above the button *\/\n            left: 50%;\n            margin-left: -50px; \/* Center the tooltip *\/\n            opacity: 0;\n            transition: opacity 0.3s ease-in-out;\n            font-size: 0.8rem;\n            pointer-events: none; \/* Prevent tooltip from interfering *\/\n        }\n\n        .yt-copy-tooltip .tooltiptext::after {\n            content: \"\";\n            position: absolute;\n            top: 100%;\n            left: 50%;\n            margin-left: -5px;\n            border-width: 5px;\n            border-style: solid;\n            border-color: var(--yt-success) transparent transparent transparent;\n        }\n\n        .yt-copy-tooltip .tooltiptext.show {\n            visibility: visible;\n            opacity: 1;\n        }\n\n\n        \/* --- Responsiveness --- *\/\n        @media (max-width: 768px) {\n            .yt-extractor-unique-wrapper {\n                margin: 20px;\n                padding: 25px 20px;\n            }\n            .yt-extractor-header-unique h1 {\n                font-size: 1.9rem;\n            }\n            .yt-icon svg {\n                width: 28px;\n            }\n            .yt-extractor-header-unique p {\n                font-size: 0.9rem;\n            }\n             .yt-extractor-form-unique .yt-form-control-unique {\n                padding: 14px 18px 14px 45px; \/* Adjust padding *\/\n                font-size: 0.95rem;\n            }\n             .yt-extractor-form-unique .btn-extract-unique {\n                padding: 12px 35px;\n                font-size: 1rem;\n            }\n            .yt-channel-id-display {\n                 font-size: 1rem;\n                 padding: 10px 15px;\n                 min-height: 44px;\n            }\n            .yt-result-actions {\n                gap: 10px; \/* Reduce gap between buttons *\/\n            }\n            .yt-result-actions .btn-action {\n                padding: 9px 18px;\n                font-size: 0.85rem;\n            }\n            .yt-result-actions .btn-action svg {\n                 width: 13px;\n                 height: 13px;\n             }\n        }\n         @media (max-width: 480px) {\n             .yt-extractor-header-unique h1 {\n                 font-size: 1.7rem;\n                 flex-direction: column; \/* Stack icon and text *\/\n                 gap: 5px;\n             }\n             .yt-icon svg {\n                 width: 30px; \/* Adjust icon size *\/\n                 margin-bottom: 5px;\n             }\n             .yt-extractor-form-unique {\n                 gap: 15px;\n             }\n             .yt-input-icon {\n                 left: 15px; \/* Adjust icon position *\/\n             }\n              .yt-extractor-form-unique .yt-form-control-unique {\n                 padding-left: 40px;\n             }\n              .yt-extractor-result-unique {\n                 padding: 20px;\n             }\n             .yt-result-actions {\n                \/* Keep flex for centering, wrap is already enabled *\/\n             }\n             .yt-result-actions .btn-action {\n                 padding: 8px 16px;\n                 font-size: 0.8rem;\n             }\n         }\n\n    <\/style>\n\n    <div class=\"yt-extractor-unique-wrapper\">\n        <div class=\"yt-extractor-unique-content\">\n            <div class=\"yt-extractor-header-unique\">\n                <h1>\n                    <span class=\"yt-icon\">\n                        <!-- Embedded YouTube SVG Icon -->\n                        <svg viewBox=\"0 0 28 20\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\" fill-rule=\"evenodd\" clip-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\">\n                            <path d=\"M27.437 3.127c-.34-.94-.948-1.714-1.805-2.084C23.96 0 14 0 14 0S4.04 0 2.368 1.043c-.857.37-1.465 1.144-1.805 2.084C0 4.49 0 10 0 10s0 5.51.563 6.873c.34.94.948 1.714 1.805 2.084C4.04 20 14 20 14 20s9.96 0 11.632-.957c.857-.37 1.465-1.144 1.805-2.084C28 15.51 28 10 28 10s0-5.51-.563-6.873zM11.196 14.243V5.757l7.41 4.243-7.41 4.243z\"\/>\n                        <\/svg>\n                    <\/span>\n                    YouTube Channel ID Extractor\n                <\/h1>\n                <p>Paste a YouTube channel URL below to find its unique Channel ID.<\/p>\n            <\/div>\n\n            <form method=\"post\" action=\"\" class=\"yt-extractor-form-unique\">\n                 <input type=\"hidden\" id=\"yt_extractor_nonce\" name=\"yt_extractor_nonce\" value=\"02df7244c8\" \/><input type=\"hidden\" name=\"_wp_http_referer\" value=\"\/ar\/wp-json\/wp\/v2\/pages\/263\" \/>                <div class=\"yt-input-group-unique\">\n                    <span class=\"yt-input-icon\">\n                        <!-- Embedded Link SVG Icon -->\n                        <svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" viewBox=\"0 0 24 24\"><path d=\"M10.59 13.41c.41-.39.41-1.02 0-1.41-.39-.39-1.02-.39-1.41 0l-4 4.01c-1.56 1.56-1.56 4.09 0 5.66 1.56 1.56 4.09 1.56 5.66 0l4-4.01c.39-.39.39-1.02 0-1.41-.39-.39-1.02-.39-1.41 0l-1.17 1.17c-.78.78-2.05.78-2.83 0-.78-.78-.78-2.05 0-2.83l1.17-1.17zm2.83-1.41l1.17 1.17c.78.78.78 2.05 0 2.83-.78.78-2.05.78-2.83 0l-1.17-1.17c-.39-.39-.39-1.02 0-1.41.39-.39 1.02-.39 1.41 0zm8.59-8.59c-1.56-1.56-4.09-1.56-5.66 0l-4 4.01c-.39.39-.39 1.02 0 1.41.39.39 1.02.39 1.41 0l1.17-1.17c.78-.78 2.05-.78 2.83 0 .78.78.78 2.05 0 2.83l-1.17 1.17c-.39.39-.39 1.02 0 1.41.39.39 1.02.39 1.41 0l4-4.01c1.56-1.56 1.56-4.09 0-5.66z\"\/><\/svg>\n                    <\/span>\n                    <input type=\"text\" name=\"youtube_channel_url_unique\" class=\"yt-form-control-unique\" placeholder=\"Enter YouTube Channel URL (e.g., youtube.com\/@handle)\" required value=\"\">\n                <\/div>\n                <button type=\"submit\" name=\"extract_channel_id_unique\" class=\"btn-extract-unique\">Extract ID<\/button>\n            <\/form>\n\n             <!-- Error Message Area -->\n            <div id=\"yt-error-message-container\" class=\"yt-error-message-unique\">\n                              <\/div>\n\n             <!-- Result Area -->\n             <div id=\"yt-result-container\" class=\"yt-extractor-result-unique\">\n                <label class=\"result-label\">Extracted Channel ID<\/label>\n                <div id=\"yt-channel-id-display\" class=\"yt-channel-id-display\">\n                                      <\/div>\n                <div class=\"yt-result-actions\">\n                    <div class=\"yt-copy-tooltip\">\n                        <button id=\"btn-copy-unique\" class=\"btn-action btn-copy-unique\" onclick=\"copyChannelId()\">\n                            <!-- Embedded Copy SVG Icon -->\n                            <svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" viewBox=\"0 0 24 24\"><path d=\"M16 1H4c-1.1 0-2 .9-2 2v14h2V3h12V1zm3 4H8c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h11c1.1 0 2-.9 2-2V7c0-1.1-.9-2-2-2zm0 16H8V7h11v14z\"\/><\/svg>\n                            Copy ID\n                        <\/button>\n                        <span class=\"tooltiptext\" id=\"copy-tooltip\">Copied!<\/span>\n                    <\/div>\n                    <button id=\"btn-clear-unique\" class=\"btn-action btn-clear-unique\" onclick=\"clearChannelIdDisplay()\">\n                        <!-- Embedded Clear\/Reset SVG Icon (using a simple X or refresh) -->\n                         <svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" viewBox=\"0 0 24 24\"><path d=\"M19 6.41L17.59 5 12 10.59 6.41 5 5 6.41 10.59 12 5 17.59 6.41 19 12 13.41 17.59 19 19 17.59 13.41 12z\"\/><\/svg>\n                        Clear\n                    <\/button>\n                <\/div>\n            <\/div>\n        <\/div>\n    <\/div>\n\n    <script>\n        function copyChannelId() {\n            const channelIdDisplay = document.getElementById('yt-channel-id-display');\n            const textToCopy = channelIdDisplay.innerText || channelIdDisplay.textContent; \/\/ Get text content\n            const tooltip = document.getElementById('copy-tooltip');\n\n            if (!textToCopy || textToCopy.trim() === '') {\n                \/\/ Maybe provide feedback that there's nothing to copy\n                console.log(\"Nothing to copy.\");\n                return;\n            }\n\n            \/\/ Use the modern Clipboard API if available, fallback for older browsers\n            if (navigator.clipboard && window.isSecureContext) {\n                 navigator.clipboard.writeText(textToCopy).then(function() {\n                    \/\/ Show tooltip feedback\n                    tooltip.classList.add('show');\n                    setTimeout(() => { tooltip.classList.remove('show'); }, 1500); \/\/ Hide after 1.5 seconds\n                }).catch(function(err) {\n                    console.error('Clipboard API copy failed: ', err);\n                    \/\/ Fallback if promise rejected (e.g., permissions)\n                    fallbackCopyTextToClipboard(textToCopy, tooltip);\n                });\n            } else {\n                \/\/ Fallback for older browsers or non-secure contexts\n                fallbackCopyTextToClipboard(textToCopy, tooltip);\n            }\n        }\n\n        \/\/ Fallback copy method using a temporary textarea\n        function fallbackCopyTextToClipboard(text, tooltip) {\n            const textArea = document.createElement(\"textarea\");\n            textArea.value = text;\n\n            \/\/ Avoid scrolling to bottom\n            textArea.style.position = 'fixed';\n            textArea.style.top = '-9999px';\n            textArea.style.left = '-9999px';\n\n            document.body.appendChild(textArea);\n            textArea.focus();\n            textArea.select();\n\n            try {\n                const successful = document.execCommand('copy');\n                if (successful) {\n                     \/\/ Show tooltip feedback\n                     tooltip.classList.add('show');\n                     setTimeout(() => { tooltip.classList.remove('show'); }, 1500); \/\/ Hide after 1.5 seconds\n                } else {\n                    console.error('Fallback execCommand copy failed');\n                    alert('Copying failed. Please copy manually.'); \/\/ Simple alert as last resort\n                }\n            } catch (err) {\n                console.error('Fallback copy error:', err);\n                alert('Copying failed. Please copy manually.'); \/\/ Simple alert as last resort\n            }\n\n            document.body.removeChild(textArea);\n        }\n\n\n        function clearChannelIdDisplay() {\n            const channelIdDisplay = document.getElementById('yt-channel-id-display');\n            const resultContainer = document.getElementById('yt-result-container');\n            const errorContainer = document.getElementById('yt-error-message-container');\n             const urlInput = document.querySelector('input[name=\"youtube_channel_url_unique\"]'); \/\/ Get input field\n\n            \/\/ Clear the displayed ID\n            if (channelIdDisplay) {\n                channelIdDisplay.textContent = '';\n            }\n            \/\/ Hide the result container\n            if (resultContainer) {\n                 resultContainer.style.display = 'none';\n            }\n            \/\/ Optionally hide the error message too if clearing\n             if (errorContainer) {\n                 errorContainer.textContent = ''; \/\/ Clear text\n                 errorContainer.style.display = 'none'; \/\/ Hide visually\n             }\n             \/\/ Optionally clear the input field\n             if (urlInput) {\n                 urlInput.value = '';\n             }\n        }\n\n         \/\/ Optional: Add event listener to hide result\/error if input changes after submission\n         document.addEventListener('DOMContentLoaded', function() {\n            const urlInput = document.querySelector('input[name=\"youtube_channel_url_unique\"]');\n            const resultContainer = document.getElementById('yt-result-container');\n            const errorContainer = document.getElementById('yt-error-message-container');\n            let initialLoadResultVisible = resultContainer && resultContainer.style.display !== 'none';\n            let initialLoadErrorVisible = errorContainer && errorContainer.style.display !== 'none';\n\n            if (urlInput && (initialLoadResultVisible || initialLoadErrorVisible)) {\n                urlInput.addEventListener('input', function() {\n                     \/\/ Hide result and error when user starts typing again\n                     if (resultContainer) resultContainer.style.display = 'none';\n                     if (errorContainer) errorContainer.style.display = 'none';\n                 }, { once: true }); \/\/ Remove listener after first input to avoid issues\n            }\n\n             \/\/ Ensure containers are visible if they have content on load (PHP already handles this with display style)\n             \/\/ This JS part is more for dynamic hiding on input change\n         });\n\n    <\/script>\n    \n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n\n\n\n<p>Running a YouTube channel is a big headache, and it gets hard to remember all of the information about it. The initial information that you need a lot of times is the ID of your channel on YouTube.<\/p>\n\n\n\n<p>A YouTube Channel ID is a distinct ID for every YouTube channel that is part of this universe. It is to differentiate the channel from all other channels on the platform and to be able to identify it. The YouTube Channel ID was letters and numbers mixed fairly frequently as a means to use it, anything from tracking analytics and making playlists all the way through integrating it with other services.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>About YouTube Channel ID Tool<\/strong><\/h2>\n\n\n\n<p>Extracting YouTube Channel IDs from channel URLs one by one for each channel can be a laborious task, especially if you have a list with hundreds or thousands of channels. Here is the answer: our YouTube Channel ID Extractor tool, a free online tool that takes out YouTube Channel IDs from a URL in a channel.<\/p>\n\n\n\n<p>With the YouTube Channel ID Tool, you can find the ID of any YouTube channel. The YouTube Channel ID is not visible on Instagram on every web page; the channel owner changes it. This will be a helpful tool if you want the ID of any YouTube channel.<\/p>\n\n\n\n<p>There are dozens of reasons why people want to find their YouTube channel ID. They may want to see their channel\u2019s URL on YouTube, or they need the ID to associate or bind their YouTube account to other services, such as analytics.<\/p>\n\n\n\n<div class=\"yt-faq-container\" itemscope itemtype=\"https:\/\/schema.org\/FAQPage\">\n  <div class=\"yt-faq-header\">\n    <div class=\"yt-faq-logo\">\n      <svg viewBox=\"0 0 24 24\" width=\"40\" height=\"40\">\n        <!-- YouTube Red circle with White Play button -->\n        <path fill=\"#FF0000\" d=\"M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2z\"\/>\n        <path fill=\"#FFFFFF\" d=\"M9.5 16.5v-9l7 4.5z\"\/>\n      <\/svg>\n      <h3>YouTube Channel ID Extractor FAQs<\/h3>\n    <\/div>\n    <p class=\"yt-faq-subtitle\">Understanding and finding your Channel ID<\/p>\n  <\/div>\n\n  <div class=\"yt-faq-item\" itemscope itemprop=\"mainEntity\" itemtype=\"https:\/\/schema.org\/Question\">\n    <h4 class=\"yt-faq-question\" itemprop=\"name\">What is a YouTube Channel ID?<\/h4>\n    <div class=\"yt-faq-answer\" itemscope itemprop=\"acceptedAnswer\" itemtype=\"https:\/\/schema.org\/Answer\">\n      <div itemprop=\"text\">\n        <p>It&#8217;s that unique string of letters and numbers YouTube assigns to your channel. Think of it like your channel&#8217;s fingerprint &#8211; no two are the same! You&#8217;ll need it for API stuff, embedding videos, and various YouTube tools. It looks something like &#8220;UC7_gcs09iThXybpVgjHZ_7g&#8221; &#8211; totally random looking but super important.<\/p>\n      <\/div>\n    <\/div>\n  <\/div>\n\n  <div class=\"yt-faq-item\" itemscope itemprop=\"mainEntity\" itemtype=\"https:\/\/schema.org\/Question\">\n    <h4 class=\"yt-faq-question\" itemprop=\"name\">How do I find my YouTube Channel ID?<\/h4>\n    <div class=\"yt-faq-answer\" itemscope itemprop=\"acceptedAnswer\" itemtype=\"https:\/\/schema.org\/Answer\">\n      <div itemprop=\"text\">\n        <p>Easiest way? Go to your channel page, right-click and &#8220;View Page Source&#8221; (or hit Ctrl+U), then search for &#8220;channelId&#8221;. Boom! There it is! Or you can check your channel&#8217;s URL &#8211; sometimes it&#8217;s right there after the \/channel\/ part. If you&#8217;re logged in, you can also find it in YouTube Studio under Channel > Advanced settings.<\/p>\n      <\/div>\n    <\/div>\n  <\/div>\n\n  <div class=\"yt-faq-item\" itemscope itemprop=\"mainEntity\" itemtype=\"https:\/\/schema.org\/Question\">\n    <h4 class=\"yt-faq-question\" itemprop=\"name\">Why is my Channel ID different from my username?<\/h4>\n    <div class=\"yt-faq-answer\" itemscope itemprop=\"acceptedAnswer\" itemtype=\"https:\/\/schema.org\/Answer\">\n      <div itemprop=\"text\">\n        <p>Yeah, that confuses everyone! Your username (or handle) is what people see &#8211; it&#8217;s the @whatever part. But the Channel ID is the behind-the-scenes technical identifier YouTube&#8217;s system uses. They&#8217;re totally different things, and the ID is what developers and YouTube&#8217;s systems actually need to work with your channel.<\/p>\n      <\/div>\n    <\/div>\n  <\/div>\n\n  <div class=\"yt-faq-item\" itemscope itemprop=\"mainEntity\" itemtype=\"https:\/\/schema.org\/Question\">\n    <h4 class=\"yt-faq-question\" itemprop=\"name\">Do I need my Channel ID for YouTube API stuff?<\/h4>\n    <div class=\"yt-faq-answer\" itemscope itemprop=\"acceptedAnswer\" itemtype=\"https:\/\/schema.org\/Answer\">\n      <div itemprop=\"text\">\n        <p>Absolutely! If you&#8217;re doing any kind of app development or using tools that connect to YouTube, you&#8217;ll need your Channel ID. The API doesn&#8217;t work with just usernames &#8211; learned that one the hard way! It&#8217;s essential for pulling your channel stats, videos, or anything channel-specific from YouTube&#8217;s system.<\/p>\n      <\/div>\n    <\/div>\n  <\/div>\n\n  <div class=\"yt-faq-item\" itemscope itemprop=\"mainEntity\" itemtype=\"https:\/\/schema.org\/Question\">\n    <h4 class=\"yt-faq-question\" itemprop=\"name\">Can my Channel ID ever change?<\/h4>\n    <div class=\"yt-faq-answer\" itemscope itemprop=\"acceptedAnswer\" itemtype=\"https:\/\/schema.org\/Answer\">\n      <div itemprop=\"text\">\n        <p>Nope! Once YouTube assigns you a Channel ID, it&#8217;s yours forever. Even if you change your channel name, handle, or completely rebrand yourself, that ID stays the same. That&#8217;s why developers love using it &#8211; it&#8217;s the one thing about your channel that never changes, no matter what.<\/p>\n      <\/div>\n    <\/div>\n  <\/div>\n<\/div>\n\n<style>\n.yt-faq-container {\n  max-width: 700px;\n  margin: 30px auto;\n  font-family: 'Segoe UI', Roboto, -apple-system, sans-serif;\n  background: white;\n  border-radius: 8px;\n  overflow: hidden;\n  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1); \/* Neutral shadow *\/\n  border: 1px solid #e6e6e6; \/* Light grey border *\/\n}\n.yt-faq-header {\n  background: linear-gradient(135deg, #CC0000, #A30000); \/* YouTube Red gradient *\/\n  padding: 25px 20px;\n  text-align: center;\n  color: white;\n  border-bottom: 4px solid #EEEEEE; \/* Light grey border *\/\n}\n.yt-faq-logo {\n  display: flex;\n  align-items: center;\n  justify-content: center;\n  gap: 12px;\n  margin-bottom: 8px;\n}\n.yt-faq-logo h3 {\n  margin: 0;\n  font-weight: 600;\n  font-size: 22px;\n  letter-spacing: -0.5px;\n}\n.yt-faq-subtitle {\n  margin: 0;\n  opacity: 0.9;\n  font-size: 15px;\n  font-weight: 400;\n}\n.yt-faq-item {\n  border-bottom: 1px solid #e6e6e6; \/* Light grey border *\/\n}\n.yt-faq-question {\n  margin: 0;\n  padding: 18px 20px;\n  background-color: white;\n  color: #212121; \/* Dark grey text *\/\n  cursor: pointer;\n  font-size: 16px;\n  font-weight: 600;\n  transition: all 0.2s;\n  display: flex;\n  align-items: center;\n}\n.yt-faq-question:hover {\n  background-color: #FAFAFA; \/* Very light grey hover *\/\n}\n.yt-faq-question:before {\n  content: '';\n  display: inline-block;\n  width: 24px;\n  height: 24px;\n  margin-right: 12px;\n  \/* Plus icon in YouTube Red *\/\n  background-image: url('data:image\/svg+xml;utf8,<svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" viewBox=\"0 0 24 24\" fill=\"%23CC0000\"><path d=\"M19 13h-6v6h-2v-6H5v-2h6V5h2v6h6v2z\"\/><\/svg>');\n  background-size: contain;\n  transition: transform 0.2s;\n}\n.yt-faq-item.active .yt-faq-question:before {\n  \/* Minus icon in YouTube Red *\/\n  background-image: url('data:image\/svg+xml;utf8,<svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" viewBox=\"0 0 24 24\" fill=\"%23CC0000\"><path d=\"M19 13H5v-2h14v2z\"\/><\/svg>');\n}\n.yt-faq-answer {\n  max-height: 0;\n  overflow: hidden;\n  transition: max-height 0.3s ease-out;\n  background: #F9F9F9; \/* Light grey background for answers *\/\n}\n.yt-faq-answer > div {\n  padding: 20px;\n  color: #4A4A4A; \/* Dark grey for answer text *\/\n  line-height: 1.6;\n  font-size: 15px;\n}\n.yt-faq-item.active .yt-faq-answer {\n  max-height: 500px; \/* Adjusted max-height if content is longer *\/\n}\n\n\/* Animation *\/\n@keyframes fadeInUp {\n  from { opacity: 0; transform: translateY(10px); }\n  to { opacity: 1; transform: translateY(0); }\n}\n.yt-faq-item {\n  animation: fadeInUp 0.4s ease-out forwards;\n  opacity: 0;\n}\n.yt-faq-item:nth-child(1) { animation-delay: 0.1s; }\n.yt-faq-item:nth-child(2) { animation-delay: 0.2s; }\n.yt-faq-item:nth-child(3) { animation-delay: 0.3s; }\n.yt-faq-item:nth-child(4) { animation-delay: 0.4s; }\n.yt-faq-item:nth-child(5) { animation-delay: 0.5s; }\n\n\/* Responsive *\/\n@media (max-width: 600px) {\n  .yt-faq-logo h3 {\n    font-size: 20px;\n  }\n  .yt-faq-question {\n    padding: 16px 15px;\n    font-size: 15px;\n  }\n}\n<\/style>\n\n<script>\ndocument.addEventListener('DOMContentLoaded', function() {\n  const questions = document.querySelectorAll('.yt-faq-question');\n  \n  \/\/ Auto-open first question\n  if(questions.length > 0) {\n    questions[0].parentElement.classList.add('active');\n  }\n  \n  questions.forEach(question => {\n    question.addEventListener('click', () => {\n      const item = question.parentElement;\n\n      \/\/ Close all other items first\n      questions.forEach(q => {\n        if (q.parentElement !== item) { \n          q.parentElement.classList.remove('active');\n        }\n      });\n      \n      \/\/ Then toggle the clicked item\n      item.classList.toggle('active');\n    });\n  });\n});\n<\/script>\n","protected":false},"excerpt":{"rendered":"<p>\u0625\u0646 \u0625\u062f\u0627\u0631\u0629 \u0642\u0646\u0627\u0629 \u0639\u0644\u0649 \u064a\u0648\u062a\u064a\u0648\u0628 \u062a\u0645\u062b\u0644 \u0635\u062f\u0627\u0639\u064b\u0627 \u0643\u0628\u064a\u0631\u064b\u0627\u060c \u0648\u064a\u0635\u0628\u062d \u0645\u0646 \u0627\u0644\u0635\u0639\u0628 \u062a\u0630\u0643\u0631 \u0643\u0644 \u0627\u0644\u0645\u0639\u0644\u0648\u0645\u0627\u062a \u0627\u0644\u0645\u062a\u0639\u0644\u0642\u0629 \u0628\u0647\u0627. ... <\/p>\n<p class=\"read-more-container\"><a title=\"\u0645\u0633\u062a\u062e\u0631\u062c \u0645\u0639\u0631\u0651\u0641 \u0642\u0646\u0627\u0629 \u064a\u0648\u062a\u064a\u0648\u0628\" class=\"read-more button\" href=\"https:\/\/youtube-thumbnail-download.org\/ar\/youtube-channel-id-extractor\/#more-263\" aria-label=\"\u0642\u0631\u0627\u0621\u0629 \u0627\u0644\u0645\u0632\u064a\u062f \u0639\u0646 \u0645\u0633\u062a\u062e\u0631\u062c \u0645\u0639\u0631\u0651\u0641 \u0642\u0646\u0627\u0629 \u064a\u0648\u062a\u064a\u0648\u0628\">\u0627\u0642\u0631\u0623 \u0627\u0644\u0645\u0632\u064a\u062f<\/a><\/p>","protected":false},"author":1,"featured_media":351,"parent":0,"menu_order":0,"comment_status":"closed","ping_status":"closed","template":"","meta":{"footnotes":""},"class_list":{"0":"post-263","1":"page","2":"type-page","3":"status-publish","4":"has-post-thumbnail","6":"resize-featured-image"},"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.0 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>YouTube Channel ID Extractor: Easily Find Your Channel ID<\/title>\n<meta name=\"description\" content=\"Use our YouTube Channel ID Extractor to effortlessly find your channel ID. Simplify the process and get the information you need in just a few clicks!\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/youtube-thumbnail-download.org\/ar\/youtube-channel-id-extractor\/\" \/>\n<meta property=\"og:locale\" content=\"ar_AR\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"YouTube Channel ID Extractor: Easily Find Your Channel ID\" \/>\n<meta property=\"og:description\" content=\"Use our YouTube Channel ID Extractor to effortlessly find your channel ID. Simplify the process and get the information you need in just a few clicks!\" \/>\n<meta property=\"og:url\" content=\"https:\/\/youtube-thumbnail-download.org\/ar\/youtube-channel-id-extractor\/\" \/>\n<meta property=\"og:site_name\" content=\"YouTube Thumbnail Downloader\" \/>\n<meta property=\"article:modified_time\" content=\"2025-05-17T06:31:04+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/youtube-thumbnail-download.org\/wp-content\/uploads\/2025\/03\/YouTube-Channel-ID-Extractor.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"1280\" \/>\n\t<meta property=\"og:image:height\" content=\"720\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"\u0648\u0642\u062a \u0627\u0644\u0642\u0631\u0627\u0621\u0629 \u0627\u0644\u0645\u064f\u0642\u062f\u0651\u0631\" \/>\n\t<meta name=\"twitter:data1\" content=\"3 \u062f\u0642\u0627\u0626\u0642\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\/\/youtube-thumbnail-download.org\/youtube-channel-id-extractor\/\",\"url\":\"https:\/\/youtube-thumbnail-download.org\/youtube-channel-id-extractor\/\",\"name\":\"YouTube Channel ID Extractor: Easily Find Your Channel ID\",\"isPartOf\":{\"@id\":\"https:\/\/youtube-thumbnail-download.org\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/youtube-thumbnail-download.org\/youtube-channel-id-extractor\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/youtube-thumbnail-download.org\/youtube-channel-id-extractor\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/youtube-thumbnail-download.org\/wp-content\/uploads\/2025\/03\/YouTube-Channel-ID-Extractor.jpg\",\"datePublished\":\"2025-03-12T19:58:38+00:00\",\"dateModified\":\"2025-05-17T06:31:04+00:00\",\"description\":\"Use our YouTube Channel ID Extractor to effortlessly find your channel ID. Simplify the process and get the information you need in just a few clicks!\",\"breadcrumb\":{\"@id\":\"https:\/\/youtube-thumbnail-download.org\/youtube-channel-id-extractor\/#breadcrumb\"},\"inLanguage\":\"ar\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/youtube-thumbnail-download.org\/youtube-channel-id-extractor\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"ar\",\"@id\":\"https:\/\/youtube-thumbnail-download.org\/youtube-channel-id-extractor\/#primaryimage\",\"url\":\"https:\/\/youtube-thumbnail-download.org\/wp-content\/uploads\/2025\/03\/YouTube-Channel-ID-Extractor.jpg\",\"contentUrl\":\"https:\/\/youtube-thumbnail-download.org\/wp-content\/uploads\/2025\/03\/YouTube-Channel-ID-Extractor.jpg\",\"width\":1280,\"height\":720},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/youtube-thumbnail-download.org\/youtube-channel-id-extractor\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/youtube-thumbnail-download.org\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"YouTube Channel ID Extractor\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/youtube-thumbnail-download.org\/#website\",\"url\":\"https:\/\/youtube-thumbnail-download.org\/\",\"name\":\"YouTube Thumbnail Downloader\",\"description\":\"\",\"publisher\":{\"@id\":\"https:\/\/youtube-thumbnail-download.org\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/youtube-thumbnail-download.org\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"ar\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/youtube-thumbnail-download.org\/#organization\",\"name\":\"YouTube Thumbnail Downloader\",\"url\":\"https:\/\/youtube-thumbnail-download.org\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"ar\",\"@id\":\"https:\/\/youtube-thumbnail-download.org\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/youtube-thumbnail-download.org\/wp-content\/uploads\/2025\/05\/youtube.png\",\"contentUrl\":\"https:\/\/youtube-thumbnail-download.org\/wp-content\/uploads\/2025\/05\/youtube.png\",\"width\":350,\"height\":70,\"caption\":\"YouTube Thumbnail Downloader\"},\"image\":{\"@id\":\"https:\/\/youtube-thumbnail-download.org\/#\/schema\/logo\/image\/\"}}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"YouTube Channel ID Extractor: Easily Find Your Channel ID","description":"Use our YouTube Channel ID Extractor to effortlessly find your channel ID. Simplify the process and get the information you need in just a few clicks!","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/youtube-thumbnail-download.org\/ar\/youtube-channel-id-extractor\/","og_locale":"ar_AR","og_type":"article","og_title":"YouTube Channel ID Extractor: Easily Find Your Channel ID","og_description":"Use our YouTube Channel ID Extractor to effortlessly find your channel ID. Simplify the process and get the information you need in just a few clicks!","og_url":"https:\/\/youtube-thumbnail-download.org\/ar\/youtube-channel-id-extractor\/","og_site_name":"YouTube Thumbnail Downloader","article_modified_time":"2025-05-17T06:31:04+00:00","og_image":[{"width":1280,"height":720,"url":"https:\/\/youtube-thumbnail-download.org\/wp-content\/uploads\/2025\/03\/YouTube-Channel-ID-Extractor.jpg","type":"image\/jpeg"}],"twitter_card":"summary_large_image","twitter_misc":{"\u0648\u0642\u062a \u0627\u0644\u0642\u0631\u0627\u0621\u0629 \u0627\u0644\u0645\u064f\u0642\u062f\u0651\u0631":"3 \u062f\u0642\u0627\u0626\u0642"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/youtube-thumbnail-download.org\/youtube-channel-id-extractor\/","url":"https:\/\/youtube-thumbnail-download.org\/youtube-channel-id-extractor\/","name":"YouTube Channel ID Extractor: Easily Find Your Channel ID","isPartOf":{"@id":"https:\/\/youtube-thumbnail-download.org\/#website"},"primaryImageOfPage":{"@id":"https:\/\/youtube-thumbnail-download.org\/youtube-channel-id-extractor\/#primaryimage"},"image":{"@id":"https:\/\/youtube-thumbnail-download.org\/youtube-channel-id-extractor\/#primaryimage"},"thumbnailUrl":"https:\/\/youtube-thumbnail-download.org\/wp-content\/uploads\/2025\/03\/YouTube-Channel-ID-Extractor.jpg","datePublished":"2025-03-12T19:58:38+00:00","dateModified":"2025-05-17T06:31:04+00:00","description":"Use our YouTube Channel ID Extractor to effortlessly find your channel ID. Simplify the process and get the information you need in just a few clicks!","breadcrumb":{"@id":"https:\/\/youtube-thumbnail-download.org\/youtube-channel-id-extractor\/#breadcrumb"},"inLanguage":"ar","potentialAction":[{"@type":"ReadAction","target":["https:\/\/youtube-thumbnail-download.org\/youtube-channel-id-extractor\/"]}]},{"@type":"ImageObject","inLanguage":"ar","@id":"https:\/\/youtube-thumbnail-download.org\/youtube-channel-id-extractor\/#primaryimage","url":"https:\/\/youtube-thumbnail-download.org\/wp-content\/uploads\/2025\/03\/YouTube-Channel-ID-Extractor.jpg","contentUrl":"https:\/\/youtube-thumbnail-download.org\/wp-content\/uploads\/2025\/03\/YouTube-Channel-ID-Extractor.jpg","width":1280,"height":720},{"@type":"BreadcrumbList","@id":"https:\/\/youtube-thumbnail-download.org\/youtube-channel-id-extractor\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/youtube-thumbnail-download.org\/"},{"@type":"ListItem","position":2,"name":"YouTube Channel ID Extractor"}]},{"@type":"WebSite","@id":"https:\/\/youtube-thumbnail-download.org\/#website","url":"https:\/\/youtube-thumbnail-download.org\/","name":"\u064a\u0648\u062a\u064a\u0648\u0628 \u0627\u0644\u0645\u0635\u063a\u0631\u0629 \u062a\u0646\u0632\u064a\u0644","description":"","publisher":{"@id":"https:\/\/youtube-thumbnail-download.org\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/youtube-thumbnail-download.org\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"ar"},{"@type":"Organization","@id":"https:\/\/youtube-thumbnail-download.org\/#organization","name":"\u064a\u0648\u062a\u064a\u0648\u0628 \u0627\u0644\u0645\u0635\u063a\u0631\u0629 \u062a\u0646\u0632\u064a\u0644","url":"https:\/\/youtube-thumbnail-download.org\/","logo":{"@type":"ImageObject","inLanguage":"ar","@id":"https:\/\/youtube-thumbnail-download.org\/#\/schema\/logo\/image\/","url":"https:\/\/youtube-thumbnail-download.org\/wp-content\/uploads\/2025\/05\/youtube.png","contentUrl":"https:\/\/youtube-thumbnail-download.org\/wp-content\/uploads\/2025\/05\/youtube.png","width":350,"height":70,"caption":"YouTube Thumbnail Downloader"},"image":{"@id":"https:\/\/youtube-thumbnail-download.org\/#\/schema\/logo\/image\/"}}]}},"_links":{"self":[{"href":"https:\/\/youtube-thumbnail-download.org\/ar\/wp-json\/wp\/v2\/pages\/263","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/youtube-thumbnail-download.org\/ar\/wp-json\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/youtube-thumbnail-download.org\/ar\/wp-json\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/youtube-thumbnail-download.org\/ar\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/youtube-thumbnail-download.org\/ar\/wp-json\/wp\/v2\/comments?post=263"}],"version-history":[{"count":3,"href":"https:\/\/youtube-thumbnail-download.org\/ar\/wp-json\/wp\/v2\/pages\/263\/revisions"}],"predecessor-version":[{"id":697,"href":"https:\/\/youtube-thumbnail-download.org\/ar\/wp-json\/wp\/v2\/pages\/263\/revisions\/697"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/youtube-thumbnail-download.org\/ar\/wp-json\/wp\/v2\/media\/351"}],"wp:attachment":[{"href":"https:\/\/youtube-thumbnail-download.org\/ar\/wp-json\/wp\/v2\/media?parent=263"}],"curies":[{"name":"\u062f\u0628\u0644\u064a\u0648 \u0628\u064a","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}