YouTube Channel ID Finder
Find the unique Channel ID for any YouTube channel. Enter a name, handle, or URL and get the UC ID instantly. Free, no login needed.
Never miss social media updates
Want faster & bigger results?
Professional services with instant delivery
How to Find a YouTube Channel ID
Every YouTube channel has a unique Channel ID. It is a 24-character string that starts with "UC" followed by 22 alphanumeric characters, like UCxxxxxxxxxxxxxxxxxxx. This ID is permanent and never changes, even if the channel name, handle, or custom URL is updated.
Enter a YouTube channel name, handle, or URL in the input field above. The tool resolves the input and returns the Channel ID with a copy-to-clipboard button. You also see the subscriber count for quick reference.
No Google or YouTube account is needed. The lookup is instant, anonymous, and free. If you want to check a creator's branding before reaching out, try the YouTube Profile Picture Viewer to see their full-resolution avatar.
What Is the YouTube Channel ID?
The YouTube Channel ID is the permanent unique identifier for every channel on the platform. YouTube assigns it automatically when a channel is created, and it never changes.
This is different from the channel name, the handle (the @username), and the custom URL. All of those can be modified by the channel owner. The Channel ID is the only identifier that stays constant.
The ID format always starts with "UC" (which stands for User Channel) followed by 22 base64-encoded characters. For example, YouTube's own official channel ID is UCBR8-60-B28hp2BmDPdntcQ. This structure is consistent across every channel on the platform.
YouTube does not prominently display the Channel ID anywhere in the app or on the website. Unless the channel still uses the old URL format (youtube.com/channel/UCxxxx), the ID is hidden behind handles and legacy custom URLs. This is why a lookup tool is necessary.
YouTube Channel Identifiers Compared
| Identifier | Format | Permanent | Example | Primary Use |
|---|---|---|---|---|
| Channel ID | UC + 22 characters | Yes, never changes | UCBR8-60-B28hp2BmDPdntcQ | API calls, RSS feeds, embeds, data storage |
| Handle (@) | @username | No, can change twice per 14 days | @YouTube | Sharing links, mentions, display name in chat |
| Custom URL (/c/) | youtube.com/c/name | Deprecated since 2022, still redirects | youtube.com/c/YouTube | Legacy links only, no longer assignable |
| Legacy Username (/user/) | youtube.com/user/name | Frozen, cannot be created or changed | youtube.com/user/YouTube | Very old bookmarks and links |
| Uploads Playlist ID | UU + 22 characters (same suffix as Channel ID) | Yes, tied to Channel ID | UUBR8-60-B28hp2BmDPdntcQ | Fetching all uploaded videos via API or playlist URL |
Why You Need the YouTube Channel ID
The YouTube Data API v3 requires the Channel ID for most endpoints. If you are building applications, dashboards, bots, or analytics tools that interact with YouTube data, you need this ID. API calls to fetch channel statistics, video lists, playlists, and subscriber counts all reference the Channel ID.
One particularly useful trick: the uploads playlist ID for any channel is the Channel ID with "UU" substituted for "UC." For example, if the Channel ID is UCBR8-60-B28hp2BmDPdntcQ, the uploads playlist is UUBR8-60-B28hp2BmDPdntcQ. This lets you fetch all uploaded videos without an additional API call.
Beyond API development, Channel IDs are used for RSS feed subscriptions. YouTube's RSS feed URL uses the Channel ID directly: youtube.com/feeds/videos.xml?channel_id=UCxxxx. This is the only reliable way to set up RSS notifications for a channel. The feed is hidden in YouTube's interface, but it still works for every public channel.
Embed codes, widgets, and third-party integrations often require the Channel ID rather than the channel name. If you are embedding a subscribe button, a channel widget, or a live chat on a website, the Channel ID is typically a required parameter.
Analytics and tracking platforms store Channel IDs as primary keys. When a channel rebrands and changes its name and handle, the Channel ID ensures continuity in reporting. Agencies managing multiple YouTube partnerships rely on this. If you are looking to grow a channel's subscriber base, check out Free YouTube Subscribers for organic growth strategies.
Channel ID vs. Handle vs. Custom URL
YouTube has introduced multiple ways to identify a channel over the years, which creates confusion.
The Channel ID is the permanent 24-character string starting with UC. It never changes and is the only guaranteed permanent identifier.
The handle is the @username format introduced in late 2022. It appears in the URL as youtube.com/@handle. Handles can be changed up to twice within any 14-day period. Your old handle is held for 14 days in case you want to switch back, but after that window anyone can claim it.
The custom URL (youtube.com/c/channelname) is a legacy vanity URL system that YouTube retired in 2022. Existing custom URLs still redirect to the handle-based URL, but new custom URLs can no longer be created or changed. Handles replaced this system entirely.
The legacy username URL (youtube.com/user/username) is from YouTube's early days. These URLs are frozen. New channels do not receive them, but old ones still redirect properly.
For any technical purpose, the Channel ID is the only reliable identifier. Handles and legacy URLs are convenient for sharing links but unreliable for code, APIs, or data storage.
YouTube Data API v3 Quickstart with Channel IDs
The YouTube Data API v3 uses the Channel ID as the primary key for most channel-related requests. Here are the most common endpoint patterns developers use.
To fetch channel statistics (subscriber count, view count, video count), call the Channels endpoint: GET youtube.googleapis.com/youtube/v3/channels?part=statistics&id=CHANNEL_ID. Add "snippet" to the part parameter if you also need the channel name, description, and thumbnails.
To list a channel's videos, use the PlaylistItems endpoint with the uploads playlist ID (replace UC with UU in the Channel ID): GET youtube.googleapis.com/youtube/v3/playlistItems?part=snippet&playlistId=UUCHANNEL_SUFFIX&maxResults=50. This returns the 50 most recent uploads.
To get all playlists created by a channel: GET youtube.googleapis.com/youtube/v3/playlists?part=snippet&channelId=CHANNEL_ID&maxResults=50. Each request requires an API key, which you generate in the Google Cloud Console under APIs & Services. The free tier allows 10,000 quota units per day, and a simple read request costs 1 unit.
Brand Channels vs. Personal Channels
YouTube supports two channel types, and both receive a unique Channel ID starting with UC. The difference is in ownership and management.
A personal channel is tied directly to one Google account. The channel name defaults to the Google account holder's name. Only the account owner can manage the channel, upload videos, and access YouTube Studio.
A Brand Account channel is a separate Google entity that can have multiple managers and owners without sharing passwords. You assign roles (Owner, Manager, Communications Manager) through Google Account settings. This is the standard setup for businesses, agencies, and creator teams.
From an API and technical standpoint, both channel types behave the same. They share the same UC-prefixed Channel ID format, the same uploads playlist trick, and the same RSS feed structure. The only extra identifier on a Brand Account is a separate Brand Account ID used internally by Google for account management.
Channel Migration and ID Persistence
YouTube's identification system has gone through several major transitions. The platform originally used usernames as the primary channel identifier. Then came custom URLs, and in late 2022, YouTube rolled out the handle system as the universal replacement.
Through every migration, the Channel ID has remained unchanged. A channel created in 2008 with a legacy username still has the exact same UC-prefixed ID it was assigned at creation. This is by design. Google treats the Channel ID as an immutable database key.
When YouTube migrated channels to the handle system, old URL formats (youtube.com/user/name and youtube.com/c/name) were set up as permanent redirects. No links broke, and no Channel IDs changed. If you stored a Channel ID in your database five years ago, it still resolves to the correct channel today. This persistence is the core reason why developers and analysts should always store the Channel ID, not the handle or display name.
How to Find the Channel ID Manually
If you prefer to find the Channel ID without a tool, there are several manual methods.
The fastest method: open any YouTube channel page in your browser, right-click, and select View Page Source. Press Ctrl+F (or Cmd+F on Mac) and search for "channel_id" or "externalId". The 24-character UC string appears in the HTML metadata. This works on any channel.
In YouTube Studio, go to Settings, then Channel, then Advanced settings. Your Channel ID is displayed there. This only works for channels you own.
Another option: use your browser's Developer Tools (F12), go to the Network tab, reload the channel page, and filter requests by "browse". The Channel ID appears in the API response payloads. This is more technical but avoids parsing raw HTML.
If the channel still uses the old URL format (youtube.com/channel/UCxxxx), the Channel ID is visible directly in the URL. Most channels now use handles, so this is rare.
This tool is faster than all of these methods. Enter the name, handle, or URL, and get the ID instantly.
For a closely related next step, try our YouTube Profile Picture Viewer tool. If this profile is part of a broader growth workflow, YouTube subscribers can be a useful next step once the basics are in place.
Features
- Instant Lookup: Enter a channel name, handle, or URL and get the Channel ID in seconds.
- Copy to Clipboard: One-click copy button to paste the ID into your code, API call, or RSS reader.
- Multiple Input Formats: Works with channel names, @handles, custom URLs, and direct channel URLs.
- Subscriber Count: Displays the channel's subscriber count alongside the ID for quick reference.
- No Login Required: No Google or YouTube account needed to use the tool.
- Free and Unlimited: No fees, no daily limits on lookups.
Frequently Asked Questions
A YouTube Channel ID is a unique 24-character identifier that starts with "UC" and is assigned to every channel when it's created. It never changes, even if the channel name, handle, or URL are updated.
Enter your channel name, handle, or channel URL in the tool above. You'll get the Channel ID instantly. Alternatively, you can find it in YouTube Studio under Settings, Channel, Advanced Settings.
The Channel ID is required for the YouTube Data API v3 to retrieve channel stats, videos, and playlists. You'll also need it for RSS feed subscriptions, embed codes, and third-party integrations.
The Channel ID is permanent and never changes. The handle (@username) can be changed up to twice within 14 days. For technical purposes like APIs or data storage, you should always use the Channel ID.
A YouTube Channel ID always starts with "UC" followed by 22 alphanumeric characters, for a total of 24 characters. For example: UCBR8-60-B28hp2BmDPdntcQ.
Yes. In the Channel ID, replace "UC" with "UU" to get the uploads playlist ID. With that ID, you can pull all of the channel's uploaded videos through the YouTube Data API v3.