What this endpoint helps with
The response provides available Profile fields in normalized V2 or platform-native V1 format.
When to use it
Use “About by user identifier” after the object is known and your product needs its current public context.
Retrieve detailed public Profile data from YouTube by a known identifier for object records, validation, and enrichment.
Use “About by user identifier” after the object is known and your product needs its current public context.
Review the result and common workflows first, then move to parameters and a working request example.
The response provides available Profile fields in normalized V2 or platform-native V1 format.
Use “About by user identifier” after the object is known and your product needs its current public context.
Attach public YouTube fields to known product objects.
Verify identifiers and current public context before downstream processing.
Use object details as inputs for reports, scoring, and related requests.
Both versions solve the same job and accept the same parameters. Use the switch to compare the response structure and choose the version your client expects.
Switch versions on this page to compare response structures while keeping the same documentation URL.
Authentication, required parameters, and the request shape stay the same across V1 and V2. In practice, you choose the version when you build the endpoint path and when you parse the response.
The main difference is the response envelope. Use V2 for new integrations and keep V1 only when you need compatibility with an existing client contract.
Use the same API key header and the same query parameters for both versions. This documentation shows the shared parameter set first, then version-specific endpoint paths and code snippets.
| Parameter | Required | Type | Example | Description |
|---|---|---|---|---|
user_identifier |
No | str |
mkbhd |
YouTube channel handle, username, or channel identifier. Example: mkbhd. |
Choose a version when you copy the exact endpoint path, example URL, and code snippet. The parameter list above stays the same.
GET /api/v2/youtube.com/profile/about-by-user-identifiercurl --request GET \
--url "https://www.scrapestorm.net/api/v2/youtube.com/profile/about-by-user-identifier" \
--header "X-API-Key: 00000000-0000-4000-8000-000000000000" \
# Optional parameters:
# --data-urlencode 'user_identifier=mkbhd'
from urllib.parse import urljoin
import requests
BASE_URL = "https://www.scrapestorm.net"
ENDPOINT = "/api/v2/youtube.com/profile/about-by-user-identifier"
HEADERS = {"Accept": "application/json", "X-API-Key": "00000000-0000-4000-8000-000000000000"}
params = {
}
# Optional parameters
# params["user_identifier"] = "mkbhd"
with requests.Session() as session:
response = session.request(
method="GET",
url=urljoin(BASE_URL, ENDPOINT),
headers=HEADERS,
params=params,
timeout=30,
)
response.raise_for_status()
payload = response.json()
print(payload)
const BASE_URL = "https://www.scrapestorm.net";
const endpoint = "/api/v2/youtube.com/profile/about-by-user-identifier";
const params = new URLSearchParams({
});
// Optional parameters
// params.set("user_identifier", "mkbhd");
const response = await fetch(`${BASE_URL}${endpoint}?${params.toString()}`, {
method: "GET",
headers: {
Accept: "application/json",
"X-API-Key": "00000000-0000-4000-8000-000000000000",
},
});
if (!response.ok) {
throw new Error(`Request failed: ${response.status} ${response.statusText}`);
}
const payload = await response.json();
console.log(payload);
import axios from "axios";
const client = axios.create({
baseURL: "https://www.scrapestorm.net",
timeout: 30000,
headers: {
Accept: "application/json",
"X-API-Key": "00000000-0000-4000-8000-000000000000",
},
});
const params = {
};
// Optional parameters
// params.user_identifier = "mkbhd";
const { data: payload } = await client.request({
method: "GET",
url: endpoint,
params,
});
console.log(payload);
<?php
declare(strict_types=1);
use GuzzleHttp\Client;
use GuzzleHttp\Exception\GuzzleException;
$client = new Client([
'base_uri' => "https://www.scrapestorm.net",
'timeout' => 30.0,
'headers' => [
'Accept' => 'application/json',
'X-API-Key' => "00000000-0000-4000-8000-000000000000",
],
]);
$query = [
];
// Optional parameters
// $query["user_identifier"] = "mkbhd";
try {
$response = $client->request("GET", "/api/v2/youtube.com/profile/about-by-user-identifier", [
'query' => $query,
]);
$payload = json_decode(
(string) $response->getBody(),
true,
512,
JSON_THROW_ON_ERROR
);
var_dump($payload);
} catch (GuzzleException $e) {
throw $e;
}
package main
import (
"encoding/json"
"fmt"
"net/http"
"net/url"
"time"
)
func main() {
baseURL := "https://www.scrapestorm.net"
endpoint := "/api/v2/youtube.com/profile/about-by-user-identifier"
params := url.Values{}
// Optional parameters
// params.Set("user_identifier", "mkbhd")
req, err := http.NewRequest(
"GET",
fmt.Sprintf("%s%s?%s", baseURL, endpoint, params.Encode()),
nil,
)
if err != nil {
panic(err)
}
req.Header.Set("Accept", "application/json")
req.Header.Set("X-API-Key", "00000000-0000-4000-8000-000000000000")
client := &http.Client{Timeout: 30 * time.Second}
resp, err := client.Do(req)
if err != nil {
panic(err)
}
defer resp.Body.Close()
var payload any
if err := json.NewDecoder(resp.Body).Decode(&payload); err != nil {
panic(err)
}
fmt.Printf("%+v\n", payload)
}
Choose a version when you copy the exact endpoint path, example URL, and code snippet. The parameter list above stays the same.
GET /api/v1/youtube.com/profile/about-by-user-identifiercurl --request GET \
--url "https://www.scrapestorm.net/api/v1/youtube.com/profile/about-by-user-identifier" \
--header "X-API-Key: 00000000-0000-4000-8000-000000000000" \
--get --data-urlencode 'user_identifier=value'
from urllib.parse import urljoin
import requests
BASE_URL = "https://www.scrapestorm.net"
ENDPOINT = "/api/v1/youtube.com/profile/about-by-user-identifier"
HEADERS = {"Accept": "application/json", "X-API-Key": "00000000-0000-4000-8000-000000000000"}
params = {
"user_identifier": "value",
}
with requests.Session() as session:
response = session.request(
method="GET",
url=urljoin(BASE_URL, ENDPOINT),
headers=HEADERS,
params=params,
timeout=30,
)
response.raise_for_status()
payload = response.json()
print(payload)
const BASE_URL = "https://www.scrapestorm.net";
const endpoint = "/api/v1/youtube.com/profile/about-by-user-identifier";
const params = new URLSearchParams({
user_identifier: "value",
});
const response = await fetch(`${BASE_URL}${endpoint}?${params.toString()}`, {
method: "GET",
headers: {
Accept: "application/json",
"X-API-Key": "00000000-0000-4000-8000-000000000000",
},
});
if (!response.ok) {
throw new Error(`Request failed: ${response.status} ${response.statusText}`);
}
const payload = await response.json();
console.log(payload);
import axios from "axios";
const client = axios.create({
baseURL: "https://www.scrapestorm.net",
timeout: 30000,
headers: {
Accept: "application/json",
"X-API-Key": "00000000-0000-4000-8000-000000000000",
},
});
const params = {
user_identifier: "value",
};
const { data: payload } = await client.request({
method: "GET",
url: endpoint,
params,
});
console.log(payload);
<?php
declare(strict_types=1);
use GuzzleHttp\Client;
use GuzzleHttp\Exception\GuzzleException;
$client = new Client([
'base_uri' => "https://www.scrapestorm.net",
'timeout' => 30.0,
'headers' => [
'Accept' => 'application/json',
'X-API-Key' => "00000000-0000-4000-8000-000000000000",
],
]);
$query = [
"user_identifier" => "value",
];
try {
$response = $client->request("GET", "/api/v1/youtube.com/profile/about-by-user-identifier", [
'query' => $query,
]);
$payload = json_decode(
(string) $response->getBody(),
true,
512,
JSON_THROW_ON_ERROR
);
var_dump($payload);
} catch (GuzzleException $e) {
throw $e;
}
package main
import (
"encoding/json"
"fmt"
"net/http"
"net/url"
"time"
)
func main() {
baseURL := "https://www.scrapestorm.net"
endpoint := "/api/v1/youtube.com/profile/about-by-user-identifier"
params := url.Values{}
params.Set("user_identifier", "value")
req, err := http.NewRequest(
"GET",
fmt.Sprintf("%s%s?%s", baseURL, endpoint, params.Encode()),
nil,
)
if err != nil {
panic(err)
}
req.Header.Set("Accept", "application/json")
req.Header.Set("X-API-Key", "00000000-0000-4000-8000-000000000000")
client := &http.Client{Timeout: 30 * time.Second}
resp, err := client.Do(req)
if err != nil {
panic(err)
}
defer resp.Body.Close()
var payload any
if err := json.NewDecoder(resp.Body).Decode(&payload); err != nil {
panic(err)
}
fmt.Printf("%+v\n", payload)
}
The preview keeps key fields and the first collection items so you can scan the response shape quickly. Switching versions changes the JSON format.
This compact JSON example comes from the latest successful verification run for V2.
{
"success": true,
"status": "ok",
"search_context": {
"user_identifier": "mkbhd"
},
"data": {
"channel": {
"url": "http://www.youtube.com/@mkbhd",
"created_at": "2008-03-21",
"channel_id": "UCBJycsmduvYEL83R_U4JriQ",
"username": "mkbhd",
"display_name": "Marques Brownlee",
"rss_url": "https://www.youtube.com/feeds/videos.xml?channel_id=UCBJycsmduvYEL83R_U4JriQ",
"verified": true,
"is_family_safe": true,
"description": "MKBHD: Quality Tech Videos | YouTuber | Geek | Consumer Electronics | Tech Head | Internet Personality!\n\[email protected]\n\nNYC",
"keywords": [
"MKBHD",
"MarquesBrownlee",
{
"_more_items": 1
}
],
"emails": [
"[email protected]"
],
"country": "United States",
"subscriber_count": 21100000,
"video_count": 1836,
"view_count": 5486122843,
"external_links": [
{
"url": "http://twitter.com/MKBHD",
"label": "Twitter",
"link_type": "twitter"
},
{
"url": "http://instagram.com/MKBHD",
"label": "Instagram",
"link_type": "instagram"
},
{
"_more_items": 3
}
],
"featured_video": {
"author": {
"url": "http://www.youtube.com/@mkbhd",
"channel_id": "UCBJycsmduvYEL83R_U4JriQ",
"username": "mkbhd",
"display_name": "Marques Brownlee",
"verified": true,
"badges": null,
"avatar_url": "https://example.com/image.jpg",
"avatar_urls": "https://example.com/image.jpg"
},
"url": "https://www.youtube.com/watch?v=_oRgdlJUD18",
"video_id": "_oRgdlJUD18",
"title": "iOS 27 Hands-On: Top 5 New Features!",
"snippet": "First look at iOS 27 - coming soon to an iPhone near you. It's about time.\n\nMKBHD Merch: http://shop.MKBHD.com\n\nPlaylist of MKBHD Intro music: https://goo.gl/B3AWV5\n\n~\nhttp://tw…",
"published_time": "5 days ago",
"duration_seconds": 900,
"duration_text": "15:00",
"view_count": 4658820
},
"badges": null,
"avatar_url": "https://example.com/image.jpg",
"avatar_urls": "https://example.com/image.jpg",
"banner_url": "https://yt3.googleusercontent.com/zi_48HwHU4s0Hnb6tZuvRzTfCPHrLEnrtIMDLzMauDEyDmURh9JZ4wrNd3lKr7m9uVnT4YjYKw=w2560-fcrop64=1,00005a57ffffa5a8-k-c0xffffffff-no-nd-rj",
"banner_images": [
{
"url": "https://yt3.googleusercontent.com/zi_48HwHU4s0Hnb6tZuvRzTfCPHrLEnrtIMDLzMauDEyDmURh9JZ4wrNd3lKr7m9uVnT4YjYKw=w1060-fcrop64=1,00005a57ffffa5a8-k-c0xffffffff-no-nd-rj",
"width": 1060,
"height": 175
},
{
"url": "https://yt3.googleusercontent.com/zi_48HwHU4s0Hnb6tZuvRzTfCPHrLEnrtIMDLzMauDEyDmURh9JZ4wrNd3lKr7m9uVnT4YjYKw=w1138-fcrop64=1,00005a57ffffa5a8-k-c0xffffffff-no-nd-rj",
"width": 1138,
"height": 188
},
{
"_more_items": 4
}
]
},
"featured_channels": [
{
"url": "https://www.youtube.com/@TheStudio",
"channel_id": "UCG7J20LhUeLl6y_Emi7OJrA",
"username": "TheStudio",
"display_name": "The Studio",
"verified": true,
"subscriber_count": 1120000,
"video_count": 207,
"badges": [
"Verified"
],
"avatar_url": "https://example.com/image.jpg",
"avatar_urls": "https://example.com/image.jpg"
},
{
"url": "https://www.youtube.com/@AutoFocus",
"channel_id": "UC2J-0g_nxlwcD9JBK1eTleQ",
"username": "AutoFocus",
"display_name": "Auto Focus",
"verified": true,
"subscriber_count": 1260000,
"video_count": 140,
"badges": [
"Verified"
],
"avatar_url": "https://example.com/image.jpg",
"avatar_urls": "https://example.com/image.jpg"
},
{
"_more_items": 4
}
]
}
}
This compact JSON example comes from the latest successful verification run for V1.
{
"success": true,
"status": "ok",
"search_context": {
"user_identifier": "mkbhd"
},
"data": {
"responseContext": {
"serviceTrackingParams": [
{
"service": "GFEEDBACK",
"params": [
{
"key": "route",
"value": "channel.about"
},
{
"key": "is_owner",
"value": "false"
},
{
"_more_items": 5
}
]
},
{
"service": "GOOGLE_HELP",
"params": [
{
"key": "browse_id",
"value": "UCBJycsmduvYEL83R_U4JriQ"
},
{
"key": "browse_id_prefix",
"value": ""
}
]
},
{
"_more_items": 3
}
],
"maxAgeSeconds": 300,
"mainAppWebResponseContext": {
"loggedOut": true,
"trackingParam": "k5_fmPxhoXZReDPo5CBIdXfk4URHoO8wEa9G0gDDt9lnbzIipUoEyG6blwRMkusEmIBwOcCw59TLtslLKPQGSS"
},
"responseId": "IhMI9t2RjtXflQMVLsQ_BB2HkQQj",
"webResponseContextExtensionData": {
"webResponseContextPreloadData": {
"preloadMessageNames": [
"pageHeaderRenderer",
"pageHeaderViewModel",
{
"_more_items": 72
}
]
},
"ytConfigData": {
"visitorData": "Cgt4N0JiRG5EMEVXRSjy_fTSBjIKCgJVUxIEGgAgDWLfAgrcAjIwLllUPUNfMWpRMHJlQk1McFpvcW96LW54NS03VzZrZUhaazNJU0pJVjh4bHM1NVdlakdMbjktUm5CeDVTaTAxVHhYc0ZGVkZ1a184cU9qNkVhazdpR2NoaXptT1gxY…",
"rootVisualElementType": 3611
},
"hasDecorated": true
}
},
"contents": {
"twoColumnBrowseResultsRenderer": {
"tabs": [
{
"tabRenderer": {
"endpoint": "…",
"title": "Home",
"selected": true,
"content": "…",
"trackingParams": "CDkQ8JMBGAYiEwj23ZGO1d-VAxUuxD8EHYeRBCM="
}
},
{
"tabRenderer": {
"endpoint": "…",
"title": "Videos",
"trackingParams": "CDgQ8JMBGAciEwj23ZGO1d-VAxUuxD8EHYeRBCM="
}
},
{
"_more_items": 6
}
]
}
},
"header": {
"pageHeaderRenderer": {
"pageTitle": "Marques Brownlee",
"content": {
"pageHeaderViewModel": {
"title": {
"dynamicTextViewModel": "…"
},
"image": {
"decoratedAvatarViewModel": "https://example.com/image.jpg"
},
"metadata": {
"contentMetadataViewModel": "…"
},
"actions": {
"flexibleActionsViewModel": "…"
},
"description": {
"descriptionPreviewViewModel": "…"
},
"attribution": {
"attributionViewModel": "…"
},
"banner": {
"imageBannerViewModel": "…"
},
"rendererContext": {
"loggingContext": "…"
}
}
}
}
},
"metadata": {
"channelMetadataRenderer": {
"title": "Marques Brownlee",
"description": "MKBHD: Quality Tech Videos | YouTuber | Geek | Consumer Electronics | Tech Head | Internet Personality!\n\[email protected]\n\nNYC",
"rssUrl": "https://www.youtube.com/feeds/videos.xml?channel_id=UCBJycsmduvYEL83R_U4JriQ",
"channelConversionUrl": "https://www.youtube.com/pagead/viewthroughconversion/962985656/?backend=innertube&cname=1&cver=2_20260715_04_00&data=backend%3Dinnertube%3Bcname%3D1%3Bcver%3D2_20260715_04_00%3B…",
"externalId": "UCBJycsmduvYEL83R_U4JriQ",
"keywords": "MKBHD MarquesBrownlee Marques Brownlee",
"ownerUrls": [
"http://www.youtube.com/@mkbhd"
],
"avatar": "https://example.com/image.jpg",
"channelUrl": "https://www.youtube.com/channel/UCBJycsmduvYEL83R_U4JriQ",
"isFamilySafe": true,
"availableCountryCodes": [
"EE",
"LK",
{
"_more_items": 247
}
],
"androidDeepLink": "android-app://com.google.android.youtube/http/www.youtube.com/channel/UCBJycsmduvYEL83R_U4JriQ",
"androidAppindexingLink": "android-app://com.google.android.youtube/http/www.youtube.com/channel/UCBJycsmduvYEL83R_U4JriQ",
"iosAppindexingLink": "ios-app://544007664/vnd.youtube/www.youtube.com/channel/UCBJycsmduvYEL83R_U4JriQ",
"vanityChannelUrl": "http://www.youtube.com/@mkbhd"
}
},
"trackingParams": "CAAQhGciEwj23ZGO1d-VAxUuxD8EHYeRBCPKAQRetfVv",
"topbar": {
"desktopTopbarRenderer": {
"logo": {
"topbarLogoRenderer": {
"iconImage": {
"iconType": "YOUTUBE_LOGO"
},
"tooltipText": {
"runs": "…"
},
"endpoint": {
"clickTrackingParams": "CCAQsV4iEwj23ZGO1d-VAxUuxD8EHYeRBCPKAQRetfVv",
"commandMetadata": "…",
"browseEndpoint": "…"
},
"trackingParams": "CCAQsV4iEwj23ZGO1d-VAxUuxD8EHYeRBCM=",
"overrideEntityKey": "EgZ0b3BiYXIg9QEoAQ%3D%3D"
}
},
"searchbox": {
"fusionSearchboxRenderer": {
"icon": {
"iconType": "SEARCH"
},
"placeholderText": {
"runs": "…"
},
"config": {
"webSearchboxConfig": "…"
},
"trackingParams": "CBwQ7VAiEwj23ZGO1d-VAxUuxD8EHYeRBCM=",
"searchEndpoint": {
"clickTrackingParams": "CBwQ7VAiEwj23ZGO1d-VAxUuxD8EHYeRBCPKAQRetfVv",
"commandMetadata": "…",
"searchEndpoint": "…"
},
"clearButton": {
"buttonRenderer": "…"
},
"showImageSourceDialog": {
"clickTrackingParams": "CBwQ7VAiEwj23ZGO1d-VAxUuxD8EHYeRBCPKAQRetfVv",
"showDialogCommand": "…"
},
"disableAiAppearance": true
}
},
"trackingParams": "CBAQq6wBIhMI9t2RjtXflQMVLsQ_BB2HkQQj",
"topbarButtons": [
{
"topbarMenuButtonRenderer": {
"icon": "…",
"menuRequest": "…",
"trackingParams": "CBoQ_qsBGAAiEwj23ZGO1d-VAxUuxD8EHYeRBCM=",
"accessibility": "…",
"tooltip": "Settings",
"style": "STYLE_DEFAULT"
}
},
{
"buttonRenderer": {
"style": "STYLE_SUGGESTIVE",
"size": "SIZE_SMALL",
"text": "…",
"icon": "…",
"navigationEndpoint": "…",
"trackingParams": "CBkQ1IAEGAEiEwj23ZGO1d-VAxUuxD8EHYeRBCM=",
"targetId": "topbar-signin"
}
}
],
"hotkeyDialog": {
"hotkeyDialogRenderer": {
"title": {
"runs": "…"
},
"sections": [
"…",
"…",
{
"_more_items": 2
}
],
"dismissButton": {
"buttonRenderer": "…"
},
"trackingParams": "CBcQteYDIhMI9t2RjtXflQMVLsQ_BB2HkQQj"
}
},
"backButton": {
"buttonRenderer": {
"trackingParams": "CBYQvIYDIhMI9t2RjtXflQMVLsQ_BB2HkQQj",
"command": {
"clickTrackingParams": "CBYQvIYDIhMI9t2RjtXflQMVLsQ_BB2HkQQjygEEXrX1bw==",
"commandMetadata": "…",
"signalServiceEndpoint": "…"
}
}
},
"forwardButton": {
"buttonRenderer": {
"trackingParams": "CBUQvYYDIhMI9t2RjtXflQMVLsQ_BB2HkQQj",
"command": {
"clickTrackingParams": "CBUQvYYDIhMI9t2RjtXflQMVLsQ_BB2HkQQjygEEXrX1bw==",
"commandMetadata": "…",
"signalServiceEndpoint": "…"
}
}
},
"a11ySkipNavigationButton": {
"buttonRenderer": {
"style": "STYLE_DEFAULT",
"size": "SIZE_DEFAULT",
"isDisabled": false,
"text": {
"runs": "…"
},
"trackingParams": "CBQQ8FsiEwj23ZGO1d-VAxUuxD8EHYeRBCM=",
"command": {
"clickTrackingParams": "CBQQ8FsiEwj23ZGO1d-VAxUuxD8EHYeRBCPKAQRetfVv",
"commandMetadata": "…",
"signalServiceEndpoint": "…"
}
}
},
"voiceSearchButton": {
"buttonRenderer": {
"style": "STYLE_DEFAULT",
"size": "SIZE_DEFAULT",
"isDisabled": false,
"serviceEndpoint": {
"clickTrackingParams": "CBEQ7a8FIhMI9t2RjtXflQMVLsQ_BB2HkQQjygEEXrX1bw==",
"commandMetadata": "…",
"signalServiceEndpoint": "…"
},
"icon": {
"iconType": "MICROPHONE_ON"
},
"tooltip": "Search with your voice",
"trackingParams": "CBEQ7a8FIhMI9t2RjtXflQMVLsQ_BB2HkQQj",
"accessibilityData": {
"accessibilityData": "…"
}
}
}
}
},
"microformat": {
"microformatDataRenderer": {
"urlCanonical": "https://www.youtube.com/channel/UCBJycsmduvYEL83R_U4JriQ",
"title": "Marques Brownlee",
"description": "MKBHD: Quality Tech Videos | YouTuber | Geek | Consumer Electronics | Tech Head | Internet Personality! [email protected] NYC",
"thumbnail": {
"thumbnails": [
{
"url": "https://yt3.googleusercontent.com/qu4TmIaYUlS41-dJ9gZ7DUR3nilvmB5_11i6OKSdvNnBNiyOusZP1bMN6ICnuxtjFBb6ioKgRQ=s200-c-k-c0x00ffffff-no-rj?days_since_epoch=20653",
"width": 200,
"height": 200
}
]
},
"siteName": "YouTube",
"appName": "YouTube",
"androidPackage": "com.google.android.youtube",
"iosAppStoreId": "544007664",
"iosAppArguments": "https://www.youtube.com/channel/UCBJycsmduvYEL83R_U4JriQ",
"ogType": "yt-fb-app:channel",
"urlApplinksWeb": "https://www.youtube.com/channel/UCBJycsmduvYEL83R_U4JriQ?feature=applinks",
"urlApplinksIos": "vnd.youtube://www.youtube.com/channel/UCBJycsmduvYEL83R_U4JriQ?feature=applinks",
"urlApplinksAndroid": "vnd.youtube://www.youtube.com/channel/UCBJycsmduvYEL83R_U4JriQ?feature=applinks",
"urlTwitterIos": "vnd.youtube://www.youtube.com/channel/UCBJycsmduvYEL83R_U4JriQ?feature=twitter-deep-link",
"urlTwitterAndroid": "vnd.youtube://www.youtube.com/channel/UCBJycsmduvYEL83R_U4JriQ?feature=twitter-deep-link",
"twitterCardType": "summary",
"twitterSiteHandle": "@YouTube",
"schemaDotOrgType": "http://schema.org/http://schema.org/YoutubeChannelV2",
"noindex": false,
"unlisted": false,
"familySafe": true,
"tags": [
"MKBHD",
"MarquesBrownlee",
{
"_more_items": 2
}
],
"availableCountries": [
"EE",
"LK",
{
"_more_items": 247
}
],
"linkAlternates": [
{
"hrefUrl": "https://m.youtube.com/channel/UCBJycsmduvYEL83R_U4JriQ"
},
{
"hrefUrl": "android-app://com.google.android.youtube/http/youtube.com/channel/UCBJycsmduvYEL83R_U4JriQ"
},
{
"_more_items": 1
}
]
}
},
"onResponseReceivedEndpoints": [
{
"clickTrackingParams": "CAAQhGciEwj23ZGO1d-VAxUuxD8EHYeRBCPKAQRetfVv",
"showEngagementPanelEndpoint": {
"engagementPanel": {
"engagementPanelSectionListRenderer": {
"header": "…",
"content": "…",
"targetId": "6d69022d-0000-2187-a6e7-14223bb8188a",
"identifier": "…"
}
},
"identifier": {
"surface": "ENGAGEMENT_PANEL_SURFACE_BROWSE",
"tag": "6d69022d-0000-2187-a6e7-14223bb8188a"
},
"engagementPanelPresentationConfigs": {
"engagementPanelPopupPresentationConfig": {
"popupType": "PANEL_POPUP_TYPE_DIALOG"
}
}
}
}
]
}
}
Use this documentation as the first decision point, then move into pricing, platform coverage, and integration rules before you connect the endpoint for recurring use.
Use these answers to decide whether this API method fits your workflow, versioning choice, and rollout plan.
The method performs “About by user identifier” for Profile. The compact response example below shows the exact field structure.
Choose V2 for new integrations because it provides a normalized structure. Use V1 only for compatibility with clients that already consume the platform-native format.
Create an API key, send it in the request header, and provide the required parameters from the table. The code samples already contain the correct path and request structure.