Get Live Info
curl --request GET \
--url https://tiktok-api23.p.rapidapi.com/api/live/info \
--header 'x-rapidapi-key: <api-key>'import requests
url = "https://tiktok-api23.p.rapidapi.com/api/live/info"
headers = {"x-rapidapi-key": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {'x-rapidapi-key': '<api-key>'}};
fetch('https://tiktok-api23.p.rapidapi.com/api/live/info', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://tiktok-api23.p.rapidapi.com/api/live/info",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"x-rapidapi-key: <api-key>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://tiktok-api23.p.rapidapi.com/api/live/info"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("x-rapidapi-key", "<api-key>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://tiktok-api23.p.rapidapi.com/api/live/info")
.header("x-rapidapi-key", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://tiktok-api23.p.rapidapi.com/api/live/info")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["x-rapidapi-key"] = '<api-key>'
response = http.request(request)
puts response.read_body{
"data": {
"AnchorABMap": {},
"adjust_display_order": 0,
"admin_ec_show_permission": {},
"admin_user_ids": [],
"age_restricted": {
"AgeInterval": 0,
"restricted": false,
"source": 0
},
"aigc_self_disclosure_switch": false,
"all_emoji_list": [],
"allow_preview_time": -1,
"anchor_scheduled_time_text": "",
"anchor_share_text": "",
"anchor_tab_type": 7,
"answering_question_content": "",
"app_id": 8311,
"audio_mute": 0,
"auto_cover": 0,
"biz_sticker_list": [],
"book_end_time": 0,
"book_time": 0,
"business_live": 0,
"challenge_info": "",
"client_version": 11909,
"comment_has_text_emoji_emote": 0,
"comment_name_mode": 0,
"commerce_info": {
"commerce_permission": 0,
"oec_live_enter_room_init_data": "",
"product_num": 0,
"use_async_load": false,
"use_new_promotion": 0
},
"common_label_list": "",
"content_tag": "",
"continuous_room_quota_config": {},
"cover": {
"avg_color": "#BCD9E0",
"height": 0,
"image_type": 0,
"is_animated": false,
"open_web_url": "",
"uri": "webcast-va/7197507146179955462",
"url_list": [
"https://p16-webcast.tiktokcdn.com/webcast-va/7197507146179955462~tplv-obj.image",
"https://p19-webcast.tiktokcdn.com/webcast-va/7197507146179955462~tplv-obj.image"
],
"width": 0
},
"cover_type": 2,
"cpp_version": 0,
"create_time": 1773790105,
"deco_list": [],
"deprecated10": "",
"deprecated11": "",
"deprecated12": "",
"deprecated13": "",
"deprecated14": 0,
"deprecated15": 0,
"deprecated16": 0,
"deprecated17": [],
"deprecated18": 0,
"deprecated19": "",
"deprecated195": false,
"deprecated2": "",
"deprecated20": 0,
"deprecated21": false,
"deprecated22": 0,
"deprecated23": "",
"deprecated24": 0,
"deprecated26": "",
"deprecated28": "",
"deprecated3": {},
"deprecated30": "",
"deprecated31": false,
"deprecated32": "",
"deprecated35": 0,
"deprecated36": 0,
"deprecated39": "",
"deprecated4": 0,
"deprecated41": 0,
"deprecated43": false,
"deprecated44": 0,
"deprecated5": false,
"deprecated6": "",
"deprecated7": 0,
"deprecated8": "",
"deprecated9": "",
"detect_anchor_leave": 0,
"disable_preload_stream": false,
"disable_preview_sub_only": 0,
"disable_screen_record": false,
"drawer_tab_position": "",
"drop_comment_group": 0,
"ec_age_interval": 0,
"ecom_room_type": 0,
"ecommerce_room_tags": [],
"effect_frame_upload_demotion": 0,
"effect_info": [],
"emoji_list": [],
"enable_optimize_sensitive_word": false,
"enable_server_drop": 0,
"enable_stream_encryption": false,
"enlarge_view_info": {
"ab_result": false,
"enabler_enlarge_view": false,
"in_enlarge_blacklist": false,
"landscape_view": 0,
"portrait_view": 0
},
"existed_commerce_goods": false,
"existed_ttls_goods": false,
"fansclub_msg_style": 2,
"feed_room_label": {
"avg_color": "#BCBCE0",
"height": 0,
"image_type": 0,
"is_animated": false,
"open_web_url": "",
"uri": "webcast-sg/2ea90002aca1159b5c67",
"url_list": [
"https://p16-webcast.tiktokcdn.com/img/alisg/webcast-sg/2ea90002aca1159b5c67~tplv-obj.image",
"https://p19-webcast.tiktokcdn.com/img/alisg/webcast-sg/2ea90002aca1159b5c67~tplv-obj.image"
],
"width": 0
},
"feed_room_labels": [],
"filter_msg_rules": [],
"finish_reason": 0,
"finish_time": 1773806468,
"finish_url": "",
"finish_url_v2": "",
"follow_msg_style": 2,
"forbidden_copy": false,
"forum_extra_data": "",
"fyp_skylight_avatar_refresh": 0,
"game_demo": 0,
"game_tag": [
{
"bundle_id": "",
"full_name": "",
"game_category": [],
"gar": [],
"hashtag_id": [
5
],
"hashtag_list": [],
"id": 102,
"is_new_game": false,
"landscape": 0,
"package_name": "",
"short_name": "",
"show_name": "Garena Free Fire"
}
],
"gift_msg_style": 2,
"gift_poll_vote_enabled": false,
"group_source": 0,
"gs_guessing_xtab_ab_param": 0,
"has_commerce_goods": false,
"has_more_history_comment": false,
"has_ttls_goods": false,
"has_ttls_live_permission": false,
"has_used_music": false,
"has_viewer_wishes_game_tricks": false,
"hashtag": {
"id": 5,
"image": {
"avg_color": "#DCF4FA",
"height": 0,
"image_type": 0,
"is_animated": false,
"open_web_url": "",
"uri": "webcast-sg/5Gaming.png",
"url_list": [
"https://p16-webcast.tiktokcdn.com/img/alisg/webcast-sg/5Gaming.png~tplv-obj.image",
"https://p19-webcast.tiktokcdn.com/img/alisg/webcast-sg/5Gaming.png~tplv-obj.image"
],
"width": 0
},
"namespace": 0,
"title": "Gaming"
},
"have_wishlist": false,
"history_comment_cursor": "",
"history_comment_list": [],
"host_board_status": 0,
"hot_sentence_info": "",
"id": 7618370406579244000,
"id_str": "7618370406579243792",
"idc_region": "",
"indicators": [],
"intended_drm": "",
"interaction_question_version": 1,
"interception": false,
"introduction": "",
"is_game": 0,
"is_gated_room": false,
"is_replay": false,
"is_reposted_expect": 0,
"is_show_user_card_switch": false,
"is_stream_low_latency": false,
"is_tag2_sfv_relation_pair": false,
"last_ping_time": 1773806468,
"layout": 0,
"like_agg_optimize_group": 0,
"like_count": 0,
"link_mic": {
"ab_infos": {},
"audience_id_list": [],
"battle_scores": [],
"battle_settings": {
"battle_id": 0,
"battle_status": 0,
"channel_id": 0,
"duration": 0,
"finished": 0,
"match_type": 0,
"start_time": 0,
"start_time_ms": 0,
"theme": ""
},
"channel_id": 0,
"channel_info": {
"dimension": 0,
"group_channel_id": 0,
"inner_channel_id": 0,
"layout": 0,
"vendor": 0
},
"followed_count": 0,
"link_mic_channel": 0,
"linked_user_list": [],
"linker_mode": 0,
"linkmic_unify_channel_id": 0,
"multi_guest_enable": false,
"multi_live_enum": 1,
"rival_anchor_id": 0,
"show_user_list": []
},
"linker_map": {},
"linkmic_layout": 0,
"lite_user_not_visible": false,
"lite_user_visible": false,
"live_distribution": [],
"live_id": 12,
"live_reason": "",
"live_room_mode": 6,
"live_sub_only": 0,
"live_sub_only_month": 0,
"live_sub_only_tier": 0,
"live_sub_only_use_music": 0,
"live_type_audio": false,
"live_type_linkmic": false,
"live_type_normal": false,
"live_type_sandbox": false,
"live_type_screenshot": false,
"live_type_social_live": false,
"live_type_third_party": true,
"living_room_attrs": {
"admin_flag": 0,
"rank": 0,
"room_id": 7618370406579244000,
"room_id_str": "7618370406579243792",
"silence_flag": 0
},
"log_id": "2026031812011014795160E4D0EB490726",
"lottery_finish_time": 0,
"max_continue_watch_mill_seconds": 0,
"max_preview_time": 60000,
"mosaic_status": 0,
"multi_stream_id": 0,
"multi_stream_id_str": "",
"multi_stream_net_mode": 0,
"multi_stream_scene": 0,
"multi_stream_source": 0,
"multi_stream_url": {
"alive_timestamp": 0,
"candidate_resolution": [],
"complete_push_urls": [],
"default_resolution": "",
"drm_type": 0,
"extra": {
"anchor_interact_profile": 0,
"audience_interact_profile": 0,
"bframe_enable": false,
"bitrate_adapt_strategy": 0,
"bytevc1_enable": false,
"default_bitrate": 0,
"deprecated1": false,
"fps": 0,
"gop_sec": 0,
"hardware_encode": false,
"height": 0,
"max_bitrate": 0,
"min_bitrate": 0,
"roi": false,
"super_resolution": {
"antialiasing": false,
"enable": false,
"strength": 0
},
"sw_roi": false,
"video_profile": 0,
"width": 0
},
"flv_pull_url": {},
"flv_pull_url_params": {},
"hls_pull_url": "",
"hls_pull_url_map": {},
"hls_pull_url_params": "",
"id": 0,
"id_str": "",
"live_core_sdk_data": {
"pull_data": {
"options": {
"default_preview_quality": {
"icon_type": 0,
"level": 0,
"name": "",
"resolution": "",
"sdk_key": "",
"v_codec": ""
},
"default_quality": {
"icon_type": 0,
"level": 0,
"name": "",
"resolution": "",
"sdk_key": "",
"v_codec": ""
},
"qualities": [],
"show_quality_button": false,
"support_low_latency": false
},
"stream_data": ""
},
"push_data": {
"push_stream_level": 0,
"resolution_params": {},
"stream_data": ""
}
},
"provider": 0,
"push_resolution": "",
"push_urls": [],
"resolution_name": {},
"rtmp_pull_url": "",
"rtmp_pull_url_params": "",
"rtmp_push_url": "",
"rtmp_push_url_params": "",
"stream_app_id": 0,
"stream_control_type": 0,
"stream_delay_ms": 0,
"stream_size_height": 0,
"stream_size_width": 0,
"vr_type": 0
},
"net_mode": 0,
"os_type": 0,
"owner": {
"allow_find_by_contacts": false,
"allow_others_download_video": false,
"allow_others_download_when_sharing_video": false,
"allow_share_show_profile": false,
"allow_show_in_gossip": false,
"allow_show_my_action": false,
"allow_strange_comment": false,
"allow_unfollower_comment": false,
"allow_use_linkmic": false,
"avatar_large": {
"avg_color": "",
"height": 0,
"image_type": 0,
"is_animated": false,
"open_web_url": "",
"uri": "1080x1080/tos-alisg-avt-0068/c9a5785324b649b280c79e66f943284d",
"url_list": [
"https://p16-sign-sg.tiktokcdn.com/tos-alisg-avt-0068/c9a5785324b649b280c79e66f943284d~tplv-tiktokx-cropcenter:1080:1080.webp?dr=14579&refresh_token=565c5068&x-expires=1773979200&x-signature=4rPFw5Emdir3ILhgtkG8sQ8OfiA%3D&t=4d5b0474&ps=13740610&shp=a5d48078&shcp=fdd36af4&idc=my2",
"https://p16-sign-sg.tiktokcdn.com/tos-alisg-avt-0068/c9a5785324b649b280c79e66f943284d~tplv-tiktokx-cropcenter:1080:1080.jpeg?dr=14579&refresh_token=d2d51c80&x-expires=1773979200&x-signature=%2FQbjka3q7p135ux6jv9I2257Cpc%3D&t=4d5b0474&ps=13740610&shp=a5d48078&shcp=fdd36af4&idc=my2"
],
"width": 0
},
"avatar_medium": {
"avg_color": "",
"height": 0,
"image_type": 0,
"is_animated": false,
"open_web_url": "",
"uri": "720x720/tos-alisg-avt-0068/c9a5785324b649b280c79e66f943284d",
"url_list": [
"https://p16-sign-sg.tiktokcdn.com/tos-alisg-avt-0068/c9a5785324b649b280c79e66f943284d~tplv-tiktokx-cropcenter:720:720.webp?dr=14579&refresh_token=5c0fc299&x-expires=1773979200&x-signature=%2BzI%2Ft4cpsgJwhJ%2F2dE%2Fm5a%2BoG%2Fo%3D&t=4d5b0474&ps=13740610&shp=a5d48078&shcp=fdd36af4&idc=my2",
"https://p16-sign-sg.tiktokcdn.com/tos-alisg-avt-0068/c9a5785324b649b280c79e66f943284d~tplv-tiktokx-cropcenter:720:720.jpeg?dr=14579&refresh_token=8e896b7c&x-expires=1773979200&x-signature=6qmH8YO8yXOOSEqS8%2FF%2B22YVIuM%3D&t=4d5b0474&ps=13740610&shp=a5d48078&shcp=fdd36af4&idc=my2"
],
"width": 0
},
"avatar_thumb": {
"avg_color": "",
"height": 0,
"image_type": 0,
"is_animated": false,
"open_web_url": "",
"uri": "100x100/tos-alisg-avt-0068/c9a5785324b649b280c79e66f943284d",
"url_list": [
"https://p16-sign-sg.tiktokcdn.com/tos-alisg-avt-0068/c9a5785324b649b280c79e66f943284d~tplv-tiktokx-cropcenter:100:100.webp?dr=14579&refresh_token=9a0995be&x-expires=1773975600&x-signature=Mv7i71RF8SnpQ2jy8NMZxrbm0zQ%3D&t=4d5b0474&ps=13740610&shp=a5d48078&shcp=3ea1580e&idc=my2",
"https://p16-sign-sg.tiktokcdn.com/tos-alisg-avt-0068/c9a5785324b649b280c79e66f943284d~tplv-tiktokx-cropcenter:100:100.jpeg?dr=14579&refresh_token=673157ab&x-expires=1773975600&x-signature=7UMrQX%2FJahwgvAllnRowQqbubwg%3D&t=4d5b0474&ps=13740610&shp=a5d48078&shcp=3ea1580e&idc=my2"
],
"width": 0
},
"badge_image_list": [],
"badge_list": [],
"bg_img_url": "",
"bio_description": "Galería: CRIS 🦁🌹🤠🩷BLOODFIRE✈️ITPMendoza🐋CASTRO🌌F7Ramos🦢CHAPIN😘",
"block_status": 0,
"border_list": [],
"comment_restrict": 0,
"commerce_webcast_config_ids": [],
"constellation": "",
"create_time": 0,
"deprecated1": 0,
"deprecated12": 0,
"deprecated13": 0,
"deprecated15": 0,
"deprecated16": false,
"deprecated17": false,
"deprecated18": "",
"deprecated19": false,
"deprecated2": 0,
"deprecated21": 0,
"deprecated28": false,
"deprecated29": "",
"deprecated3": 0,
"deprecated4": 0,
"deprecated5": "",
"deprecated6": 0,
"deprecated7": "",
"deprecated8": 0,
"disable_ichat": 0,
"display_id": "eltomboff",
"enable_ichat_img": 0,
"exp": 0,
"fan_ticket_count": 0,
"fans_club_info": {
"badge": {
"avg_color": "",
"height": 0,
"image_type": 35,
"is_animated": false,
"open_web_url": "",
"uri": "webcast-va/fans_left_up_corner_entrance_icon_lv1_v0.png",
"url_list": [
"https://p16-webcast.tiktokcdn.com/webcast-va/fans_left_up_corner_entrance_icon_lv1_v0.png~tplv-obj.image",
"https://p19-webcast.tiktokcdn.com/webcast-va/fans_left_up_corner_entrance_icon_lv1_v0.png~tplv-obj.image"
],
"width": 0
},
"fans_club_name": "",
"fans_count": 0,
"fans_level": 0,
"fans_score": 0,
"is_sleeping": false
},
"fold_stranger_chat": false,
"follow_info": {
"follow_status": 0,
"follower_count": 520275,
"following_count": 58,
"push_status": 0
},
"follow_status": 0,
"ichat_restrict_type": 0,
"id": 6788752804346496000,
"id_str": "6788752804346496006",
"is_anchor_marked": false,
"is_block": false,
"is_follower": false,
"is_following": false,
"is_subscribe": false,
"link_mic_stats": 2,
"media_badge_image_list": [],
"mint_type_label": [
7160893592603462000
],
"modify_time": 1773804171,
"need_profile_guide": false,
"new_real_time_icons": [],
"nickname": "EL TOMBO FF 👮🏼♂️",
"own_room": {
"room_ids": [
7618370406579244000
],
"room_ids_str": [
"7618370406579243792"
]
},
"pay_grade": {
"deprecated20": 0,
"deprecated22": 0,
"deprecated23": 0,
"deprecated24": 0,
"deprecated25": 0,
"deprecated26": 0,
"grade_banner": "",
"grade_describe": "",
"grade_icon_list": [],
"level": 0,
"name": "",
"next_name": "",
"next_privileges": "",
"score": 0,
"screen_chat_type": 0,
"upgrade_need_consume": 0
},
"pay_score": 0,
"pay_scores": 0,
"push_comment_status": false,
"push_digg": false,
"push_follow": false,
"push_friend_action": false,
"push_ichat": false,
"push_status": false,
"push_video_post": false,
"push_video_recommend": false,
"real_time_icons": [],
"scm_label": "",
"sec_uid": "MS4wLjABAAAA3jFDUnObfQ46dsWci1xMiTGzkkUFvww0YLThyqVL3XWTvw6RhDBT8Bk8AsXagwMT",
"secret": 0,
"share_qrcode_uri": "",
"special_id": "",
"status": 1,
"subscribe_info": {
"anchor_gift_sub_auth": false,
"badge": {
"is_customized": false
},
"enable_subscription": false,
"is_in_grace_period": false,
"is_sol_eligible": false,
"is_subscribe": false,
"is_subscribed_to_anchor": false,
"package_id": "",
"qualification": true,
"sol_room_display_text": "",
"status": 0,
"sub_end_time": 0,
"sub_split_status": {
"cur_period": 3,
"is_old_sub_creator": true
},
"subscriber_count": 0,
"timer_detail": {
"anchor_id": 0,
"anchor_side_title": "",
"antidirt_status": 0,
"audit_status": 0,
"last_pause_timestamp_s": 0,
"remaining_time_s": 0,
"screen_h": 0,
"screen_w": 0,
"start_countdown_time_s": 0,
"start_timestamp_s": 0,
"sticker_x": 0,
"sticker_y": 0,
"sub_count": 0,
"time_increase_cap_s": 0,
"time_increase_per_sub_s": 0,
"time_increase_reach_cap": false,
"timer_id": 0,
"timer_status": 0,
"timestamp_s": 0,
"total_pause_time_s": 0,
"total_time_s": 0,
"user_side_title": ""
},
"user_gift_sub_auth": false
},
"ticket_count": 0,
"top_fans": [],
"top_vip_no": 0,
"upcoming_event_list": [],
"user_attr": {
"admin_permissions": {},
"has_voting_function": false,
"is_admin": false,
"is_channel_admin": false,
"is_muted": false,
"is_super_admin": false,
"mute_duration": 0
},
"user_role": 0,
"verified": false,
"verified_content": "",
"verified_reason": "",
"with_car_management_permission": false,
"with_commerce_permission": false,
"with_fusion_shop_entry": false
},
"owner_device_id": 0,
"owner_device_id_str": "",
"owner_user_id": 6788752804346496000,
"owner_user_id_str": "6788752804346496006",
"paid_event": {
"event_id": 0,
"paid_type": 0
},
"partnership_info": {
"game_info_list": [],
"partnership_room": false,
"promoting_drops_id": "",
"promoting_game_id": "",
"promoting_room": false,
"promoting_task_id": "",
"promoting_task_type": 0,
"show_task_id": "",
"show_task_type": 0,
"task_id_list": []
},
"pico_live_type": 0,
"polling_star_comment": false,
"pre_enter_time": 0,
"preview_flow_tag": 0,
"quota_config": {},
"rank_comment_groups": [],
"ranklist_audience_type": 0,
"regional_restricted": {
"block_list": []
},
"relation_tag": "",
"replay": true,
"repost_note": "",
"reposted": false,
"room_audit_status": 0,
"room_auth": {
"Banner": 1,
"BroadcastMessage": 0,
"Chat": true,
"ChatL2": false,
"ChatSubOnly": false,
"CommentMention": 0,
"CommercePermission": 0,
"CommunityFlagged": false,
"CommunityFlaggedReview": false,
"CustomizableGiftPoll": 0,
"CustomizablePoll": 0,
"Danmaku": false,
"Digg": true,
"DonationSticker": 2,
"EmotePoll": 0,
"EnableFansLevel": false,
"EnableShowUserUV": false,
"EnigmaWhisper": 0,
"EventPromotion": 0,
"Explore": false,
"GameRankingSwitch": 0,
"Gift": true,
"GiftAnchorMt": 1,
"GiftPoll": 0,
"GoldenEnvelope": 0,
"GoldenEnvelopeActivity": 0,
"InteractionQuestion": true,
"Landscape": 2,
"LandscapeChat": 0,
"LuckMoney": true,
"MultiEnableReserve": false,
"Pictionary": 0,
"PictionaryBubble": 0,
"PictionaryPermission": 0,
"Poll": 0,
"Promote": false,
"PromoteOther": 0,
"Props": false,
"PublicScreen": 1,
"QuickChat": 0,
"Rank": 0,
"RankingChangeAlterSwitch": 0,
"RoomContributor": false,
"SecretRoom": 0,
"Share": true,
"ShareEffect": 0,
"ShoppingRanking": 0,
"SpamComments": false,
"UserCard": true,
"UserCount": 1,
"ViewerWishes": 0,
"Viewers": false,
"anchor_level_permission": {
"InteractionQuestion": 0,
"beauty": 0,
"comment_filter": 0,
"comment_setting": 0,
"customizable_poll": 0,
"donation_sticker": 0,
"effects": 0,
"flip": 0,
"full_screen_mode": 0,
"goody_bag": 0,
"hear_your_own_voice": 0,
"karaoke": 0,
"live_background": 0,
"live_center": 0,
"live_intro": 0,
"mirror": 0,
"moderator_setting": 0,
"pause_live": 0,
"pictionary": 0,
"pin": 0,
"play_together": 0,
"poll": 0,
"portal": 0,
"promote": 0,
"share": 0,
"sticker": 0,
"topic": 0,
"treasure_box": 0,
"viewer_rank_list": 0,
"voice_effect": 0
},
"comment_tray_status": 0,
"credit_entrance_for_audience": false,
"deprecated1": false,
"deprecated118": [],
"deprecated119": 0,
"deprecated2": 0,
"deprecated3": 0,
"deprecated4": 0,
"deprecated5": 0,
"deprecated6": 0,
"deprecated7": 0,
"deprecated8": 0,
"deprecated9": 0,
"game_guess_permission": false,
"guess_entrance_for_host": false,
"show_credit_widget": false,
"transaction_history": 1,
"use_user_pv": false
},
"room_auth_message": {},
"room_create_ab_param": "{\"ai_live_summary\":0,\"auto_post_living\":0,\"autocut_opt_strategy_revert\":false,\"check_ping_no_streaming_short_close\":0,\"compensation_push\":0,\"count_strategy\":0,\"create_room_continue_optimize\":0,\"enable_revenue_tips_moderator_comment\":1,\"fans_privilege_upgrade\":1,\"game_multi_guess_creator\":1,\"game_use_new_virtual_app_id\":2,\"gb_obs_use_virtual_app_id\":0,\"gift_poll_optimize\":1,\"go_live_with_vip_stream\":0,\"heartme_gift_text_enabled\":true,\"host_lop_realtime_settle\":0,\"linkmic_ab_params\":{\"enable_effect_layout_animation\":true,\"enable_game_linkmic_charm\":true,\"linkmic_anchor_co_host_multi_guest_reservation\":1,\"linkmic_floating_layout_opt_style_v2\":2,\"live_linkmic_enable_state_consistency\":3,\"multi_guest_skip_tip_for_enlarge_another\":true},\"lite_user_not_visible\":false,\"live_cohost_cross_room_push_arch_enable\":true,\"live_cohost_timeout_strategy_group\":0,\"live_replay_highlight_recover\":false,\"live_replay_highlight_refactor\":0,\"live_share_post\":false,\"ls_auto_post\":0,\"moderator_tips_v2\":1,\"new_platform_badges\":false,\"obs_use_new_virtual_app_id\":0,\"pictionary_bubble\":0,\"pictionary_permission\":0,\"poll_template_optimize_group\":2,\"push_concurrency\":0,\"room_has_pin\":true,\"room_pin_duration\":60,\"sea_obs_use_virtual_app_id\":0,\"show_subscription_barrage_message\":false,\"show_subscription_enter_message\":false,\"sub_only_live_moderator\":false,\"update_room_status_optimize\":0,\"use_hybrid_golive_net\":0,\"use_new_anchor_net_control\":true,\"wave_optimize_strategy\":2}",
"room_layout": 0,
"room_llm_title": "",
"room_pcu": 0,
"room_sticker_list": [],
"room_tabs": [],
"room_tag": 0,
"rtc_app_id": "",
"scroll_config": "",
"search_id": 0,
"secret_room_access": false,
"share_msg_style": 2,
"share_url": "https://m.tiktok.com/share/live/7618370406579243792/?language=en&u_code=f0ja7h22380b90",
"short_title": "",
"short_touch_items": [],
"show_emoji_list": false,
"show_star_comment_entrance": false,
"show_watch_live_cta": false,
"social_interaction": {
"linkmic_scene_linker": {},
"multi_live": {
"ai_summary": "",
"audience_send_gifts_to_all_enum": 0,
"audience_shared_invitee_panel_type": 0,
"background_sticker_id": "",
"extra_info": {},
"hangout_card_tag_list": [],
"host_gifter_linkmic_enum": 0,
"host_multi_guest_dev_mode": 0,
"host_send_gifts_to_all_enum": 0,
"is_eligible_for_apply_auto_approve": false,
"linkmic_service_version": 0,
"top_live_guide": "",
"top_live_title": "",
"trigger_guide_time": 0,
"try_open_multi_guest_when_create_room": false,
"user_settings": {
"applier_sort_gift_score_threshold": 0,
"applier_sort_setting": 0,
"multi_guest_allow_request_from_followers": 0,
"multi_guest_allow_request_from_friends": 0,
"multi_guest_allow_request_from_others": 0,
"multi_guest_apply_auto_approve": 0,
"multi_guest_disable_video_linkmic": 0,
"multi_guest_reset_point_after_leave": 0,
"multi_live_apply_permission": 1
},
"viewer_gifter_linkmic_enum": 0
}
},
"square_cover_img": {
"avg_color": "#666666",
"height": 0,
"image_type": 0,
"is_animated": false,
"open_web_url": "",
"uri": "webcast-sg/0e36ad4b0ee9daf1a4fb22baebf0df72",
"url_list": [
"https://p16-webcast.tiktokcdn.com/webcast-sg/0e36ad4b0ee9daf1a4fb22baebf0df72~tplv-obj.image",
"https://p19-webcast.tiktokcdn.com/webcast-sg/0e36ad4b0ee9daf1a4fb22baebf0df72~tplv-obj.image"
],
"width": 0
},
"start_time": 0,
"stats": {
"comment_count": 0,
"deprecated1": 0,
"deprecated2": "",
"digg_count": 0,
"enter_count": 191992,
"fan_ticket": 0,
"follow_count": 689,
"gift_uv_count": 0,
"id": 7618370406579244000,
"id_str": "7618370406579243792",
"like_count": 0,
"replay_fan_ticket": 0,
"replay_viewers": 107976,
"room_follow_count": 0,
"share_count": 0,
"total_user": 191992,
"total_user_desp": "",
"user_count_composition": {
"deprecated1": 0,
"my_follow": 0,
"other": 0,
"video_detail": 0
},
"watch_user_count": 0,
"watermelon": 0
},
"status": 2,
"sticker_list": [],
"stream_id": 1848419295776211000,
"stream_id_str": "1848419295776211036",
"stream_status": 0,
"stream_url": {
"alive_timestamp": 0,
"candidate_resolution": [
"SD1",
"SD2",
"HD1"
],
"complete_push_urls": [],
"default_resolution": "SD2",
"drm_type": 0,
"extra": {
"anchor_client_info": {
"custom_info": ""
},
"anchor_interact_profile": 0,
"audience_interact_profile": 0,
"bframe_enable": false,
"bitrate_adapt_strategy": 0,
"bytevc1_enable": false,
"default_bitrate": 0,
"deprecated1": false,
"fps": 0,
"gop_sec": 0,
"hardware_encode": false,
"height": 0,
"max_bitrate": 0,
"min_bitrate": 0,
"roi": false,
"sw_roi": false,
"video_profile": 0,
"width": 0
},
"flv_pull_url": {
"HD1": "https://pull-flv-l1-sg01.tiktokcdn.com/game/stream-1848419295776211036_hd.flv?expire=1775016070&sign=1080e4ca548bd5f82ef571cc85903bc1",
"SD1": "https://pull-flv-l1-sg01.tiktokcdn.com/game/stream-1848419295776211036_ld.flv?expire=1775016070&sign=45db48801206d7678e31a57f99e25e0e",
"SD2": "https://pull-flv-l1-sg01.tiktokcdn.com/game/stream-1848419295776211036_sd.flv?expire=1775016070&sign=1f972a9f3ffee9e3e11fc53bc8901573"
},
"flv_pull_url_params": {
"HD1": "{\"v_rtbitrate\":1761760,\"v_rtbitrate_std\":62560,\"v_rtpsnr\":0,\"v_rtbitrate_pct\":1853390,\"stream_suffix\":\"hd\",\"vbitrate\":1800000,\"resolution\":\"720x1280\",\"gop\":4,\"v_rtbitrate_vpaas_timestamp\":1773806470278,\"VCodec\":\"h264\",\"Auto\":{\"Enable\":1,\"Demotion\":{\"StallCount\":4}},\"v_rtbitrate_timestamp\":1773806467018,\"cdn_name\":\"ws\"}",
"SD1": "{\"v_rtbitrate_vpaas_timestamp\":1773806470278,\"v_rtbitrate_timestamp\":1773806459089,\"gop\":4,\"v_rtbitrate\":531520,\"cdn_name\":\"ws\",\"stream_suffix\":\"ld\",\"vbitrate\":600000,\"v_rtpsnr\":0,\"Auto\":{\"Demotion\":{\"StallCount\":4},\"Enable\":1},\"VCodec\":\"h264\",\"v_rtbitrate_pct\":569430,\"v_rtbitrate_std\":23930,\"resolution\":\"360x640\"}",
"SD2": "{\"Auto\":{\"Demotion\":{\"StallCount\":4},\"Enable\":1},\"VCodec\":\"h264\",\"v_rtbitrate_timestamp\":1773793805044,\"gop\":4,\"v_rtbitrate_pct\":1227160,\"cdn_name\":\"ws\",\"resolution\":\"540x960\",\"stream_suffix\":\"sd\",\"v_rtbitrate\":1184740,\"v_rtpsnr\":0,\"v_rtbitrate_std\":137180,\"vbitrate\":1200000,\"v_rtbitrate_vpaas_timestamp\":1773806470278}"
},
"hls_pull_url": "https://pull-hls-l1-sg01.tiktokcdn.com/game/stream-1848419295776211036/playlist.m3u8?expire=1775016070&session_id=148-2026031812011014795160E4D0EB490726&sign=6c52550fdc11d0e2afd49c3a50c66e4f",
"hls_pull_url_map": {},
"hls_pull_url_params": "{\"resolution\":\"1080x1920\",\"gop\":4,\"cdn_name\":\"ws\",\"VCodec\":\"h264\",\"Auto\":{\"Demotion\":{\"StallCount\":4},\"Enable\":1},\"vbitrate\":8400000}",
"id": 1848419295776211000,
"id_str": "1848419295776211036",
"live_core_sdk_data": {
"pull_data": {
"options": {
"default_preview_quality": {
"icon_type": 0,
"level": 0,
"name": "",
"resolution": "",
"sdk_key": "",
"v_codec": ""
},
"default_quality": {
"icon_type": 0,
"level": 0,
"name": "540p",
"resolution": "",
"sdk_key": "sd",
"v_codec": ""
},
"qualities": [
{
"icon_type": 6,
"level": 10,
"name": "Original",
"resolution": "",
"sdk_key": "origin",
"v_codec": ""
},
{
"icon_type": 4,
"level": 6,
"name": "1080p60",
"resolution": "",
"sdk_key": "uhd_60",
"v_codec": ""
},
{
"icon_type": 3,
"level": 4,
"name": "720p60",
"resolution": "",
"sdk_key": "hd_60",
"v_codec": ""
},
{
"icon_type": 3,
"level": 3,
"name": "720p",
"resolution": "",
"sdk_key": "hd",
"v_codec": ""
},
{
"icon_type": 2,
"level": 2,
"name": "540p",
"resolution": "",
"sdk_key": "sd",
"v_codec": ""
},
{
"icon_type": 1,
"level": 1,
"name": "360p",
"resolution": "",
"sdk_key": "ld",
"v_codec": ""
}
],
"show_quality_button": false,
"support_low_latency": false
},
"stream_data": "{\"common\":{\"session_id\":\"148-2026031812011014795160E4D0EB490726\",\"rule_ids\":\"{\\\"ab_version_trace\\\":null,\\\"sched\\\":\\\"{\\\\\\\"result\\\\\\\":{\\\\\\\"hit\\\\\\\":\\\\\\\"default\\\\\\\",\\\\\\\"cdn\\\\\\\":192}}\\\"}\",\"user_count\":28,\"peer_anchor_level\":38},\"data\":{\"origin\":{\"main\":{\"flv\":\"https://pull-flv-l1-sg01.tiktokcdn.com/game/stream-1848419295776211036.flv?expire=1775016070&sign=09f8f551ed25dd2492c1f36c21a99f5d\",\"hls\":\"https://pull-hls-l1-sg01.tiktokcdn.com/game/stream-1848419295776211036/playlist.m3u8?expire=1775016070&sign=6c52550fdc11d0e2afd49c3a50c66e4f\",\"cmaf\":\"\",\"dash\":\"\",\"lls\":\"https://pull-lls-l1-sg01.tiktokcdn.com/game/stream-1848419295776211036.sdp?expire=1775016070&sign=676cf83b30b1f79eb93cc2a4c626243e\",\"tsl\":\"\",\"tile\":\"\",\"rtc\":\"\",\"sdk_params\":\"{\\\"resolution\\\":\\\"1080x1920\\\",\\\"gop\\\":4,\\\"cdn_name\\\":\\\"ws\\\",\\\"VCodec\\\":\\\"h264\\\",\\\"Auto\\\":{\\\"Demotion\\\":{\\\"StallCount\\\":4},\\\"Enable\\\":1},\\\"vbitrate\\\":8400000}\"}},\"hd\":{\"main\":{\"flv\":\"https://pull-flv-l1-sg01.tiktokcdn.com/game/stream-1848419295776211036_hd.flv?expire=1775016070&sign=1080e4ca548bd5f82ef571cc85903bc1\",\"hls\":\"https://pull-hls-l1-sg01.tiktokcdn.com/game/stream-1848419295776211036_hd/playlist.m3u8?expire=1775016070&sign=eb701676b389d80c687773b5e0f4d419\",\"cmaf\":\"\",\"dash\":\"\",\"lls\":\"https://pull-lls-l1-sg01.tiktokcdn.com/game/stream-1848419295776211036_hd.sdp?expire=1775016070&sign=944a5503d3db1a657b5894bfea67cdb8\",\"tsl\":\"\",\"tile\":\"\",\"rtc\":\"\",\"sdk_params\":\"{\\\"v_rtbitrate\\\":1761760,\\\"v_rtbitrate_std\\\":62560,\\\"v_rtpsnr\\\":0,\\\"v_rtbitrate_pct\\\":1853390,\\\"stream_suffix\\\":\\\"hd\\\",\\\"vbitrate\\\":1800000,\\\"resolution\\\":\\\"720x1280\\\",\\\"gop\\\":4,\\\"v_rtbitrate_vpaas_timestamp\\\":1773806470278,\\\"VCodec\\\":\\\"h264\\\",\\\"Auto\\\":{\\\"Enable\\\":1,\\\"Demotion\\\":{\\\"StallCount\\\":4}},\\\"v_rtbitrate_timestamp\\\":1773806467018,\\\"cdn_name\\\":\\\"ws\\\"}\"}},\"sd\":{\"main\":{\"flv\":\"https://pull-flv-l1-sg01.tiktokcdn.com/game/stream-1848419295776211036_sd.flv?expire=1775016070&sign=1f972a9f3ffee9e3e11fc53bc8901573\",\"hls\":\"https://pull-hls-l1-sg01.tiktokcdn.com/game/stream-1848419295776211036_sd/playlist.m3u8?expire=1775016070&sign=0737058acd1428560b27d3aa1933e66d\",\"cmaf\":\"\",\"dash\":\"\",\"lls\":\"https://pull-lls-l1-sg01.tiktokcdn.com/game/stream-1848419295776211036_sd.sdp?expire=1775016070&sign=8ccbb3d0ca6b8919802a09c61fac80d2\",\"tsl\":\"\",\"tile\":\"\",\"rtc\":\"\",\"sdk_params\":\"{\\\"Auto\\\":{\\\"Demotion\\\":{\\\"StallCount\\\":4},\\\"Enable\\\":1},\\\"VCodec\\\":\\\"h264\\\",\\\"v_rtbitrate_timestamp\\\":1773793805044,\\\"gop\\\":4,\\\"v_rtbitrate_pct\\\":1227160,\\\"cdn_name\\\":\\\"ws\\\",\\\"resolution\\\":\\\"540x960\\\",\\\"stream_suffix\\\":\\\"sd\\\",\\\"v_rtbitrate\\\":1184740,\\\"v_rtpsnr\\\":0,\\\"v_rtbitrate_std\\\":137180,\\\"vbitrate\\\":1200000,\\\"v_rtbitrate_vpaas_timestamp\\\":1773806470278}\"}},\"ld\":{\"main\":{\"flv\":\"https://pull-flv-l1-sg01.tiktokcdn.com/game/stream-1848419295776211036_ld.flv?expire=1775016070&sign=45db48801206d7678e31a57f99e25e0e\",\"hls\":\"https://pull-hls-l1-sg01.tiktokcdn.com/game/stream-1848419295776211036_ld/playlist.m3u8?expire=1775016070&sign=c7949cc1291b8291eb3bac99d16faf75\",\"cmaf\":\"\",\"dash\":\"\",\"lls\":\"https://pull-lls-l1-sg01.tiktokcdn.com/game/stream-1848419295776211036_ld.sdp?expire=1775016070&sign=4702087b577c98c27a1985fd05bd581d\",\"tsl\":\"\",\"tile\":\"\",\"rtc\":\"\",\"sdk_params\":\"{\\\"v_rtbitrate_vpaas_timestamp\\\":1773806470278,\\\"v_rtbitrate_timestamp\\\":1773806459089,\\\"gop\\\":4,\\\"v_rtbitrate\\\":531520,\\\"cdn_name\\\":\\\"ws\\\",\\\"stream_suffix\\\":\\\"ld\\\",\\\"vbitrate\\\":600000,\\\"v_rtpsnr\\\":0,\\\"Auto\\\":{\\\"Demotion\\\":{\\\"StallCount\\\":4},\\\"Enable\\\":1},\\\"VCodec\\\":\\\"h264\\\",\\\"v_rtbitrate_pct\\\":569430,\\\"v_rtbitrate_std\\\":23930,\\\"resolution\\\":\\\"360x640\\\"}\"}},\"uhd_60\":{\"main\":{\"flv\":\"https://pull-flv-l1-sg01.tiktokcdn.com/game/stream-1848419295776211036_uhd60.flv?expire=1775016070&sign=c5bffc91e7a5dcde535b3ded0af0fc7f\",\"hls\":\"https://pull-hls-l1-sg01.tiktokcdn.com/game/stream-1848419295776211036_uhd60/playlist.m3u8?expire=1775016070&sign=e3095f367e0755890e81b9a6cc829399\",\"cmaf\":\"\",\"dash\":\"\",\"lls\":\"https://pull-lls-l1-sg01.tiktokcdn.com/game/stream-1848419295776211036_uhd60.sdp?expire=1775016070&sign=c3385b772371e0a70690034e1e075f15\",\"tsl\":\"\",\"tile\":\"\",\"rtc\":\"\",\"sdk_params\":\"{\\\"gop\\\":4,\\\"cdn_name\\\":\\\"ws\\\",\\\"Auto\\\":{\\\"Demotion\\\":{\\\"StallCount\\\":4},\\\"Enable\\\":1},\\\"VCodec\\\":\\\"h264\\\",\\\"stream_suffix\\\":\\\"uhd60\\\",\\\"vbitrate\\\":5000000,\\\"resolution\\\":\\\"1080x1920\\\"}\"}},\"hd_60\":{\"main\":{\"flv\":\"https://pull-flv-l1-sg01.tiktokcdn.com/game/stream-1848419295776211036_hd60.flv?expire=1775016070&sign=5dab7b121657e298c66ebf070f2fd97b\",\"hls\":\"https://pull-hls-l1-sg01.tiktokcdn.com/game/stream-1848419295776211036_hd60/playlist.m3u8?expire=1775016070&sign=9c31fd6531305fed8fab68b87d2736d1\",\"cmaf\":\"\",\"dash\":\"\",\"lls\":\"https://pull-lls-l1-sg01.tiktokcdn.com/game/stream-1848419295776211036_hd60.sdp?expire=1775016070&sign=2d13eb7d1aa6a867368a81139211dfe0\",\"tsl\":\"\",\"tile\":\"\",\"rtc\":\"\",\"sdk_params\":\"{\\\"resolution\\\":\\\"720x1280\\\",\\\"Auto\\\":{\\\"Enable\\\":1,\\\"Demotion\\\":{\\\"StallCount\\\":4}},\\\"VCodec\\\":\\\"h264\\\",\\\"gop\\\":4,\\\"cdn_name\\\":\\\"ws\\\",\\\"stream_suffix\\\":\\\"hd60\\\",\\\"vbitrate\\\":3000000}\"}},\"ao\":{\"main\":{\"flv\":\"https://pull-flv-l1-sg01.tiktokcdn.com/game/stream-1848419295776211036.flv?expire=1775016070&sign=09f8f551ed25dd2492c1f36c21a99f5d&only_audio=1\",\"hls\":\"\",\"cmaf\":\"\",\"dash\":\"\",\"lls\":\"\",\"tsl\":\"\",\"tile\":\"\",\"rtc\":\"\",\"sdk_params\":\"{\\\"vbitrate\\\":0,\\\"resolution\\\":\\\"\\\",\\\"gop\\\":4,\\\"cdn_name\\\":\\\"ws\\\",\\\"stream_suffix\\\":\\\"ao\\\",\\\"Auto\\\":{\\\"Enable\\\":1,\\\"Demotion\\\":{\\\"StallCount\\\":4}},\\\"VCodec\\\":\\\"h264\\\"}\"}}}}"
},
"push_data": {
"push_stream_level": 0,
"resolution_params": {},
"stream_data": ""
}
},
"provider": 0,
"push_resolution": "",
"push_urls": [],
"resolution_name": {
"AUTO": "AUTO",
"FULL_HD1": "1080p",
"HD1": "720p",
"ORIGION": "Original",
"SD1": "360p",
"SD2": "540p",
"pm_mt_video_1080p60": "1080p60",
"pm_mt_video_720p60": "720p60",
"ttlive_videoQuality_option_2k": "2K"
},
"rtmp_pull_url": "https://pull-flv-l1-sg01.tiktokcdn.com/game/stream-1848419295776211036.flv?expire=1775016070&session_id=148-2026031812011014795160E4D0EB490726&sign=09f8f551ed25dd2492c1f36c21a99f5d",
"rtmp_pull_url_params": "{\"resolution\":\"1080x1920\",\"gop\":4,\"cdn_name\":\"ws\",\"VCodec\":\"h264\",\"Auto\":{\"Demotion\":{\"StallCount\":4},\"Enable\":1},\"vbitrate\":8400000}",
"rtmp_push_url": "",
"rtmp_push_url_params": "",
"stream_app_id": 0,
"stream_control_type": 0,
"stream_delay_ms": 0,
"stream_size_height": 0,
"stream_size_width": 0,
"vr_type": 0
},
"stream_url_filtered_info": {
"is_gated_room": false,
"is_paid_event": false
},
"sub_tag": 0,
"support_quiz": 0,
"title": "cuenta mr stiven",
"top_fans": [
{
"fan_ticket": 5889,
"user": {
"allow_find_by_contacts": false,
"allow_others_download_video": false,
"allow_others_download_when_sharing_video": false,
"allow_share_show_profile": false,
"allow_show_in_gossip": false,
"allow_show_my_action": false,
"allow_strange_comment": false,
"allow_unfollower_comment": false,
"allow_use_linkmic": false,
"avatar_large": {
"avg_color": "",
"height": 0,
"image_type": 0,
"is_animated": false,
"open_web_url": "",
"uri": "1080x1080/tos-maliva-avt-0068/4eecc69819032da43be65480298de70f",
"url_list": [
"https://p16-sign-va.tiktokcdn.com/tos-maliva-avt-0068/4eecc69819032da43be65480298de70f~tplv-tiktokx-cropcenter:1080:1080.webp?dr=14579&refresh_token=dfdaf54d&x-expires=1773979200&x-signature=LQNU09FUguxUMw%2FVrRXiFiiN1yg%3D&t=4d5b0474&ps=13740610&shp=a5d48078&shcp=fdd36af4&idc=my3",
"https://p16-sign-va.tiktokcdn.com/tos-maliva-avt-0068/4eecc69819032da43be65480298de70f~tplv-tiktokx-cropcenter:1080:1080.jpeg?dr=14579&refresh_token=266738ac&x-expires=1773979200&x-signature=jRvB1kfzaqZuRaNaxTdJzgOrhQY%3D&t=4d5b0474&ps=13740610&shp=a5d48078&shcp=fdd36af4&idc=my3"
],
"width": 0
},
"avatar_medium": {
"avg_color": "",
"height": 0,
"image_type": 0,
"is_animated": false,
"open_web_url": "",
"uri": "720x720/tos-maliva-avt-0068/4eecc69819032da43be65480298de70f",
"url_list": [
"https://p16-sign-va.tiktokcdn.com/tos-maliva-avt-0068/4eecc69819032da43be65480298de70f~tplv-tiktokx-cropcenter:720:720.webp?dr=14579&refresh_token=3cfb12a8&x-expires=1773979200&x-signature=XkLkxxZZxm9LN8EKw4omBHIuWDQ%3D&t=4d5b0474&ps=13740610&shp=a5d48078&shcp=fdd36af4&idc=my3",
"https://p16-sign-va.tiktokcdn.com/tos-maliva-avt-0068/4eecc69819032da43be65480298de70f~tplv-tiktokx-cropcenter:720:720.jpeg?dr=14579&refresh_token=939d166f&x-expires=1773979200&x-signature=ukG%2Fh8jRU5HCbDokYXq7DFGYEi0%3D&t=4d5b0474&ps=13740610&shp=a5d48078&shcp=fdd36af4&idc=my3"
],
"width": 0
},
"avatar_thumb": {
"avg_color": "",
"height": 0,
"image_type": 0,
"is_animated": false,
"open_web_url": "",
"uri": "100x100/tos-maliva-avt-0068/4eecc69819032da43be65480298de70f",
"url_list": [
"https://p16-sign-va.tiktokcdn.com/tos-maliva-avt-0068/4eecc69819032da43be65480298de70f~tplv-tiktokx-cropcenter:100:100.webp?dr=14579&refresh_token=914829a8&x-expires=1773979200&x-signature=FqLSj1ywnkyxKyHV1tl6KleqV%2FU%3D&t=4d5b0474&ps=13740610&shp=a5d48078&shcp=fdd36af4&idc=my3",
"https://p16-sign-va.tiktokcdn.com/tos-maliva-avt-0068/4eecc69819032da43be65480298de70f~tplv-tiktokx-cropcenter:100:100.jpeg?dr=14579&refresh_token=2743c2a2&x-expires=1773979200&x-signature=z5PhTUb6oI9W%2BFh609cquNwipF0%3D&t=4d5b0474&ps=13740610&shp=a5d48078&shcp=fdd36af4&idc=my3"
],
"width": 0
},
"badge_image_list": [],
"badge_list": [],
"bg_img_url": "",
"bio_description": "",
"block_status": 0,
"border_list": [],
"comment_restrict": 0,
"commerce_webcast_config_ids": [],
"constellation": "",
"create_time": 0,
"deprecated1": 0,
"deprecated12": 0,
"deprecated13": 0,
"deprecated15": 0,
"deprecated16": false,
"deprecated17": false,
"deprecated18": "",
"deprecated19": false,
"deprecated2": 0,
"deprecated21": 0,
"deprecated28": false,
"deprecated29": "",
"deprecated3": 0,
"deprecated4": 0,
"deprecated5": "",
"deprecated6": 0,
"deprecated7": "",
"deprecated8": 0,
"disable_ichat": 0,
"display_id": "kevin_zx.07",
"enable_ichat_img": 0,
"exp": 0,
"fan_ticket_count": 0,
"fold_stranger_chat": false,
"follow_info": {
"follow_status": 0,
"follower_count": 308,
"following_count": 175,
"push_status": 0
},
"follow_status": 0,
"ichat_restrict_type": 0,
"id": 7519324647486572000,
"id_str": "7519324647486571551",
"is_anchor_marked": false,
"is_block": false,
"is_follower": false,
"is_following": false,
"is_subscribe": false,
"link_mic_stats": 2,
"media_badge_image_list": [],
"mint_type_label": [],
"modify_time": 1773800828,
"need_profile_guide": false,
"new_real_time_icons": [],
"nickname": "J E O V A N Y 🩸",
"pay_grade": {
"deprecated20": 0,
"deprecated22": 0,
"deprecated23": 0,
"deprecated24": 0,
"deprecated25": 0,
"deprecated26": 0,
"grade_banner": "",
"grade_describe": "",
"grade_icon_list": [],
"level": 0,
"name": "",
"next_name": "",
"next_privileges": "",
"score": 0,
"screen_chat_type": 0,
"upgrade_need_consume": 0
},
"pay_score": 0,
"pay_scores": 0,
"push_comment_status": false,
"push_digg": false,
"push_follow": false,
"push_friend_action": false,
"push_ichat": false,
"push_status": false,
"push_video_post": false,
"push_video_recommend": false,
"real_time_icons": [],
"scm_label": "",
"sec_uid": "MS4wLjABAAAAg4U7YuAaJLK69yPHDJt73idcP9m2z8bN8nzLyoDkkM_SFZTXskWugRri5hgW6vUl",
"secret": 0,
"share_qrcode_uri": "",
"special_id": "",
"status": 1,
"ticket_count": 0,
"top_fans": [],
"top_vip_no": 0,
"upcoming_event_list": [],
"user_attr": {
"admin_permissions": {},
"has_voting_function": false,
"is_admin": false,
"is_channel_admin": false,
"is_muted": false,
"is_super_admin": false,
"mute_duration": 0
},
"user_role": 0,
"verified": false,
"verified_content": "",
"verified_reason": "",
"with_car_management_permission": false,
"with_commerce_permission": false,
"with_fusion_shop_entry": false
}
},
{
"fan_ticket": 1829,
"user": {
"allow_find_by_contacts": false,
"allow_others_download_video": false,
"allow_others_download_when_sharing_video": false,
"allow_share_show_profile": false,
"allow_show_in_gossip": false,
"allow_show_my_action": false,
"allow_strange_comment": false,
"allow_unfollower_comment": false,
"allow_use_linkmic": false,
"avatar_large": {
"avg_color": "",
"height": 0,
"image_type": 0,
"is_animated": false,
"open_web_url": "",
"uri": "1080x1080/tos-maliva-avt-0068/0467a87bac511970395365c863688481",
"url_list": [
"https://p16-sign-va.tiktokcdn.com/tos-maliva-avt-0068/0467a87bac511970395365c863688481~tplv-tiktokx-cropcenter:1080:1080.webp?dr=14579&refresh_token=bbf0b099&x-expires=1773975600&x-signature=INwW5XDPpT3gNxD01kyrek8pOb0%3D&t=4d5b0474&ps=13740610&shp=a5d48078&shcp=fdd36af4&idc=my2",
"https://p16-sign-va.tiktokcdn.com/tos-maliva-avt-0068/0467a87bac511970395365c863688481~tplv-tiktokx-cropcenter:1080:1080.jpeg?dr=14579&refresh_token=6085a909&x-expires=1773975600&x-signature=%2Brza%2FrMeTskGCLfptQU9%2FPxkJck%3D&t=4d5b0474&ps=13740610&shp=a5d48078&shcp=fdd36af4&idc=my2"
],
"width": 0
},
"avatar_medium": {
"avg_color": "",
"height": 0,
"image_type": 0,
"is_animated": false,
"open_web_url": "",
"uri": "720x720/tos-maliva-avt-0068/0467a87bac511970395365c863688481",
"url_list": [
"https://p16-sign-va.tiktokcdn.com/tos-maliva-avt-0068/0467a87bac511970395365c863688481~tplv-tiktokx-cropcenter:720:720.webp?dr=14579&refresh_token=40e50c79&x-expires=1773975600&x-signature=mphVRed5OGl%2FKZ7w47C%2F4pBFPUo%3D&t=4d5b0474&ps=13740610&shp=a5d48078&shcp=fdd36af4&idc=my2",
"https://p16-sign-va.tiktokcdn.com/tos-maliva-avt-0068/0467a87bac511970395365c863688481~tplv-tiktokx-cropcenter:720:720.jpeg?dr=14579&refresh_token=a84e571f&x-expires=1773975600&x-signature=ryLh2MDbTKuFsiWpgnW9nTQkR5U%3D&t=4d5b0474&ps=13740610&shp=a5d48078&shcp=fdd36af4&idc=my2"
],
"width": 0
},
"avatar_thumb": {
"avg_color": "",
"height": 0,
"image_type": 0,
"is_animated": false,
"open_web_url": "",
"uri": "100x100/tos-maliva-avt-0068/0467a87bac511970395365c863688481",
"url_list": [
"https://p16-sign-va.tiktokcdn.com/tos-maliva-avt-0068/0467a87bac511970395365c863688481~tplv-tiktokx-cropcenter:100:100.webp?dr=14579&refresh_token=0cf75c75&x-expires=1773975600&x-signature=RHfGSUcP71lEVbhXI64PKlzyYu4%3D&t=4d5b0474&ps=13740610&shp=a5d48078&shcp=fdd36af4&idc=my2",
"https://p16-sign-va.tiktokcdn.com/tos-maliva-avt-0068/0467a87bac511970395365c863688481~tplv-tiktokx-cropcenter:100:100.jpeg?dr=14579&refresh_token=f3f36690&x-expires=1773975600&x-signature=K8JkJdSEGQX25Nxzh8iRuKrdyiw%3D&t=4d5b0474&ps=13740610&shp=a5d48078&shcp=fdd36af4&idc=my2"
],
"width": 0
},
"badge_image_list": [],
"badge_list": [
{
"OpenWebURL": "aweme://roma_redirect/?spark_page=user_level_main_page_privilege_panel",
"combine": {
"background": {
"background_color_code": "#B3475AFF",
"border_color_code": "",
"image": {
"avg_color": "",
"height": 0,
"image_type": 0,
"is_animated": false,
"open_web_url": "",
"uri": "",
"url_list": [],
"width": 0
},
"left_side_image": {
"avg_color": "",
"height": 0,
"image_type": 0,
"is_animated": false,
"open_web_url": "",
"uri": "",
"url_list": [],
"width": 0
}
},
"background_auto_mirrored": false,
"background_dark_mode": {
"background_color_code": "#B3475AFF",
"border_color_code": "",
"image": {
"avg_color": "",
"height": 0,
"image_type": 0,
"is_animated": false,
"open_web_url": "",
"uri": "",
"url_list": [],
"width": 0
},
"left_side_image": {
"avg_color": "",
"height": 0,
"image_type": 0,
"is_animated": false,
"open_web_url": "",
"uri": "",
"url_list": [],
"width": 0
}
},
"display_type": 4,
"font_style": {
"border_color": "",
"font_color": "",
"font_size": 0,
"font_width": 0
},
"icon": {
"avg_color": "",
"height": 0,
"image_type": 0,
"is_animated": false,
"open_web_url": "aweme://roma_redirect/?spark_page=user_level_main_page_privilege_panel",
"uri": "webcast-va/grade_badge_icon_lite_lv20_v1.png",
"url_list": [
"https://p16-webcast.tiktokcdn.com/webcast-va/grade_badge_icon_lite_lv20_v1.png~tplv-obj.image",
"https://p19-webcast.tiktokcdn.com/webcast-va/grade_badge_icon_lite_lv20_v1.png~tplv-obj.image"
],
"width": 0
},
"icon_auto_mirrored": false,
"multi_guest_show_style": 0,
"padding": {
"badge_width": 32,
"horizontal_padding_rule": 0,
"icon_bottom_padding": 0,
"icon_top_padding": 0,
"left_padding": 0,
"middle_padding": 0,
"right_padding": 0,
"use_specific": true,
"vertical_padding_rule": 0
},
"padding_new_font": {
"badge_width": 32,
"horizontal_padding_rule": 0,
"icon_bottom_padding": 0,
"icon_top_padding": 0,
"left_padding": 0,
"middle_padding": 0,
"right_padding": 0,
"use_specific": true,
"vertical_padding_rule": 0
},
"personal_card_show_style": 15,
"profile_card_panel": {
"badge_text_position": 0,
"profile_content": {
"icon_list": [],
"use_content": false
},
"projection_config": {
"icon": {
"avg_color": "",
"height": 0,
"image_type": 0,
"is_animated": false,
"open_web_url": "",
"uri": "",
"url_list": [],
"width": 0
},
"use_projection": false
},
"use_new_profile_card_style": false
},
"public_screen_show_style": 14,
"ranklist_online_audience_show_style": 0,
"str": "22"
},
"display": true,
"display_status": 0,
"display_type": 4,
"exhibition_type": 0,
"greyed_by_client": 0,
"is_customized": false,
"position": 1,
"priority_type": 20,
"privilege_log_extra": {
"data_version": "2",
"end_time": 0,
"level": "22",
"privilege_id": "7138381861675357988",
"privilege_order_id": "mock_fix_width_transparent_7138381861675357988",
"privilege_version": "0",
"start_time": 0
},
"scene_type": 8
}
],
"bg_img_url": "",
"bio_description": "",
"block_status": 0,
"border_list": [],
"comment_restrict": 0,
"commerce_webcast_config_ids": [],
"constellation": "",
"create_time": 0,
"deprecated1": 0,
"deprecated12": 0,
"deprecated13": 0,
"deprecated15": 0,
"deprecated16": false,
"deprecated17": false,
"deprecated18": "",
"deprecated19": false,
"deprecated2": 0,
"deprecated21": 0,
"deprecated28": false,
"deprecated29": "",
"deprecated3": 0,
"deprecated4": 0,
"deprecated5": "",
"deprecated6": 0,
"deprecated7": "",
"deprecated8": 0,
"disable_ichat": 0,
"display_id": "ivan.a.borbon",
"enable_ichat_img": 0,
"exp": 0,
"fan_ticket_count": 0,
"fold_stranger_chat": false,
"follow_info": {
"follow_status": 0,
"follower_count": 80,
"following_count": 224,
"push_status": 0
},
"follow_status": 0,
"ichat_restrict_type": 0,
"id": 6838241872218359000,
"id_str": "6838241872218358789",
"is_anchor_marked": false,
"is_block": false,
"is_follower": false,
"is_following": false,
"is_subscribe": false,
"link_mic_stats": 2,
"media_badge_image_list": [],
"mint_type_label": [
7160893592603462000
],
"modify_time": 1773769839,
"need_profile_guide": false,
"new_real_time_icons": [],
"nickname": "Shenrro",
"pay_grade": {
"deprecated20": 0,
"deprecated22": 0,
"deprecated23": 0,
"deprecated24": 0,
"deprecated25": 0,
"deprecated26": 0,
"grade_banner": "",
"grade_describe": "",
"grade_icon_list": [],
"level": 0,
"name": "",
"next_name": "",
"next_privileges": "",
"score": 0,
"screen_chat_type": 0,
"upgrade_need_consume": 0
},
"pay_score": 0,
"pay_scores": 0,
"push_comment_status": false,
"push_digg": false,
"push_follow": false,
"push_friend_action": false,
"push_ichat": false,
"push_status": false,
"push_video_post": false,
"push_video_recommend": false,
"real_time_icons": [],
"scm_label": "",
"sec_uid": "MS4wLjABAAAAA6-mF5-rk3cfvimJwN1t4AGPbXpsgMqF5Xi0NaoK937ZU7-W-qBEW9mx29qACZ70",
"secret": 1,
"share_qrcode_uri": "",
"special_id": "",
"status": 1,
"ticket_count": 0,
"top_fans": [],
"top_vip_no": 0,
"upcoming_event_list": [],
"user_attr": {
"admin_permissions": {},
"has_voting_function": false,
"is_admin": false,
"is_channel_admin": false,
"is_muted": false,
"is_super_admin": false,
"mute_duration": 0
},
"user_role": 0,
"verified": false,
"verified_content": "",
"verified_reason": "",
"with_car_management_permission": false,
"with_commerce_permission": false,
"with_fusion_shop_entry": false
}
},
{
"fan_ticket": 1107,
"user": {
"allow_find_by_contacts": false,
"allow_others_download_video": false,
"allow_others_download_when_sharing_video": false,
"allow_share_show_profile": false,
"allow_show_in_gossip": false,
"allow_show_my_action": false,
"allow_strange_comment": false,
"allow_unfollower_comment": false,
"allow_use_linkmic": false,
"avatar_large": {
"avg_color": "",
"height": 0,
"image_type": 0,
"is_animated": false,
"open_web_url": "",
"uri": "1080x1080/tos-maliva-avt-0068/c280efb15ed5032ccc498e6815b1906e",
"url_list": [
"https://p16-sign-va.tiktokcdn.com/tos-maliva-avt-0068/c280efb15ed5032ccc498e6815b1906e~tplv-tiktokx-cropcenter:1080:1080.webp?dr=14579&refresh_token=0f1c5e7c&x-expires=1773979200&x-signature=%2B2xuFvHOYKm3ExXq5jCT%2BIl8GzY%3D&t=4d5b0474&ps=13740610&shp=a5d48078&shcp=fdd36af4&idc=my3",
"https://p16-sign-va.tiktokcdn.com/tos-maliva-avt-0068/c280efb15ed5032ccc498e6815b1906e~tplv-tiktokx-cropcenter:1080:1080.jpeg?dr=14579&refresh_token=12734165&x-expires=1773979200&x-signature=jqV9CyQkIOnOcJoYcWhir8puNOg%3D&t=4d5b0474&ps=13740610&shp=a5d48078&shcp=fdd36af4&idc=my3"
],
"width": 0
},
"avatar_medium": {
"avg_color": "",
"height": 0,
"image_type": 0,
"is_animated": false,
"open_web_url": "",
"uri": "720x720/tos-maliva-avt-0068/c280efb15ed5032ccc498e6815b1906e",
"url_list": [
"https://p16-sign-va.tiktokcdn.com/tos-maliva-avt-0068/c280efb15ed5032ccc498e6815b1906e~tplv-tiktokx-cropcenter:720:720.webp?dr=14579&refresh_token=39ddc11d&x-expires=1773979200&x-signature=HVqVecS7AmYVesEk3h8wxM1w3sw%3D&t=4d5b0474&ps=13740610&shp=a5d48078&shcp=fdd36af4&idc=my3",
"https://p16-sign-va.tiktokcdn.com/tos-maliva-avt-0068/c280efb15ed5032ccc498e6815b1906e~tplv-tiktokx-cropcenter:720:720.jpeg?dr=14579&refresh_token=9c433d7c&x-expires=1773979200&x-signature=5lhVy%2F71A%2FkFRZhAT9NGvyXHtPE%3D&t=4d5b0474&ps=13740610&shp=a5d48078&shcp=fdd36af4&idc=my3"
],
"width": 0
},
"avatar_thumb": {
"avg_color": "",
"height": 0,
"image_type": 0,
"is_animated": false,
"open_web_url": "",
"uri": "100x100/tos-maliva-avt-0068/c280efb15ed5032ccc498e6815b1906e",
"url_list": [
"https://p16-sign-va.tiktokcdn.com/tos-maliva-avt-0068/c280efb15ed5032ccc498e6815b1906e~tplv-tiktokx-cropcenter:100:100.webp?dr=14579&refresh_token=192ba954&x-expires=1773979200&x-signature=JTi9HAa%2B8N5IwE6jyVnBGA3bupU%3D&t=4d5b0474&ps=13740610&shp=a5d48078&shcp=fdd36af4&idc=my3",
"https://p16-sign-va.tiktokcdn.com/tos-maliva-avt-0068/c280efb15ed5032ccc498e6815b1906e~tplv-tiktokx-cropcenter:100:100.jpeg?dr=14579&refresh_token=488b4da9&x-expires=1773979200&x-signature=URvXbsCrc5gTeGu2m3n%2F3aQiDgI%3D&t=4d5b0474&ps=13740610&shp=a5d48078&shcp=fdd36af4&idc=my3"
],
"width": 0
},
"badge_image_list": [],
"badge_list": [],
"bg_img_url": "",
"bio_description": "👩🏽🦱💕",
"block_status": 0,
"border_list": [],
"comment_restrict": 0,
"commerce_webcast_config_ids": [],
"constellation": "",
"create_time": 0,
"deprecated1": 0,
"deprecated12": 0,
"deprecated13": 0,
"deprecated15": 0,
"deprecated16": false,
"deprecated17": false,
"deprecated18": "",
"deprecated19": false,
"deprecated2": 0,
"deprecated21": 0,
"deprecated28": false,
"deprecated29": "",
"deprecated3": 0,
"deprecated4": 0,
"deprecated5": "",
"deprecated6": 0,
"deprecated7": "",
"deprecated8": 0,
"disable_ichat": 0,
"display_id": "rxxnal",
"enable_ichat_img": 0,
"exp": 0,
"fan_ticket_count": 0,
"fold_stranger_chat": false,
"follow_info": {
"follow_status": 0,
"follower_count": 41,
"following_count": 161,
"push_status": 0
},
"follow_status": 0,
"ichat_restrict_type": 0,
"id": 7471332853295302000,
"id_str": "7471332853295301678",
"is_anchor_marked": false,
"is_block": false,
"is_follower": false,
"is_following": false,
"is_subscribe": false,
"link_mic_stats": 2,
"media_badge_image_list": [],
"mint_type_label": [],
"modify_time": 1773760849,
"need_profile_guide": false,
"new_real_time_icons": [],
"nickname": "rxxnal",
"pay_grade": {
"deprecated20": 0,
"deprecated22": 0,
"deprecated23": 0,
"deprecated24": 0,
"deprecated25": 0,
"deprecated26": 0,
"grade_banner": "",
"grade_describe": "",
"grade_icon_list": [],
"level": 0,
"name": "",
"next_name": "",
"next_privileges": "",
"score": 0,
"screen_chat_type": 0,
"upgrade_need_consume": 0
},
"pay_score": 0,
"pay_scores": 0,
"push_comment_status": false,
"push_digg": false,
"push_follow": false,
"push_friend_action": false,
"push_ichat": false,
"push_status": false,
"push_video_post": false,
"push_video_recommend": false,
"real_time_icons": [],
"scm_label": "",
"sec_uid": "MS4wLjABAAAAq3fHx1yjd1uHT_8hNsbACsmMsPvfbIZlzmWknh35Z4U1e98aepk-j_H_-orjJoV4",
"secret": 0,
"share_qrcode_uri": "",
"special_id": "",
"status": 1,
"ticket_count": 0,
"top_fans": [],
"top_vip_no": 0,
"upcoming_event_list": [],
"user_attr": {
"admin_permissions": {},
"has_voting_function": false,
"is_admin": false,
"is_channel_admin": false,
"is_muted": false,
"is_super_admin": false,
"mute_duration": 0
},
"user_role": 0,
"verified": false,
"verified_content": "",
"verified_reason": "",
"with_car_management_permission": false,
"with_commerce_permission": false,
"with_fusion_shop_entry": false
}
}
],
"use_filter": false,
"user_count": 1925,
"user_share_text": "",
"video_feed_tag": "",
"visible_scope_type": 0,
"watch_day_cnt_layer": 0,
"watch_early_quota_config": {},
"webcast_comment_tcs": 0,
"webcast_sdk_version": 0,
"with_draw_something": false,
"with_ktv": false,
"with_linkmic": true
},
"status_code": 0
}{
"message": "Bad request"
}{
"message": "Invalid API key. Go to https://docs.rapidapi.com/docs/keys for more info."
}{
"message": "You are not subscribed to this API."
}{
"message": "Request failed with status 500: Internal Server Error",
"status_code": 500
}Live
Get Live Info
Get Live Info
GET
/
api
/
live
/
info
Get Live Info
curl --request GET \
--url https://tiktok-api23.p.rapidapi.com/api/live/info \
--header 'x-rapidapi-key: <api-key>'import requests
url = "https://tiktok-api23.p.rapidapi.com/api/live/info"
headers = {"x-rapidapi-key": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {'x-rapidapi-key': '<api-key>'}};
fetch('https://tiktok-api23.p.rapidapi.com/api/live/info', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://tiktok-api23.p.rapidapi.com/api/live/info",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"x-rapidapi-key: <api-key>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://tiktok-api23.p.rapidapi.com/api/live/info"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("x-rapidapi-key", "<api-key>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://tiktok-api23.p.rapidapi.com/api/live/info")
.header("x-rapidapi-key", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://tiktok-api23.p.rapidapi.com/api/live/info")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["x-rapidapi-key"] = '<api-key>'
response = http.request(request)
puts response.read_body{
"data": {
"AnchorABMap": {},
"adjust_display_order": 0,
"admin_ec_show_permission": {},
"admin_user_ids": [],
"age_restricted": {
"AgeInterval": 0,
"restricted": false,
"source": 0
},
"aigc_self_disclosure_switch": false,
"all_emoji_list": [],
"allow_preview_time": -1,
"anchor_scheduled_time_text": "",
"anchor_share_text": "",
"anchor_tab_type": 7,
"answering_question_content": "",
"app_id": 8311,
"audio_mute": 0,
"auto_cover": 0,
"biz_sticker_list": [],
"book_end_time": 0,
"book_time": 0,
"business_live": 0,
"challenge_info": "",
"client_version": 11909,
"comment_has_text_emoji_emote": 0,
"comment_name_mode": 0,
"commerce_info": {
"commerce_permission": 0,
"oec_live_enter_room_init_data": "",
"product_num": 0,
"use_async_load": false,
"use_new_promotion": 0
},
"common_label_list": "",
"content_tag": "",
"continuous_room_quota_config": {},
"cover": {
"avg_color": "#BCD9E0",
"height": 0,
"image_type": 0,
"is_animated": false,
"open_web_url": "",
"uri": "webcast-va/7197507146179955462",
"url_list": [
"https://p16-webcast.tiktokcdn.com/webcast-va/7197507146179955462~tplv-obj.image",
"https://p19-webcast.tiktokcdn.com/webcast-va/7197507146179955462~tplv-obj.image"
],
"width": 0
},
"cover_type": 2,
"cpp_version": 0,
"create_time": 1773790105,
"deco_list": [],
"deprecated10": "",
"deprecated11": "",
"deprecated12": "",
"deprecated13": "",
"deprecated14": 0,
"deprecated15": 0,
"deprecated16": 0,
"deprecated17": [],
"deprecated18": 0,
"deprecated19": "",
"deprecated195": false,
"deprecated2": "",
"deprecated20": 0,
"deprecated21": false,
"deprecated22": 0,
"deprecated23": "",
"deprecated24": 0,
"deprecated26": "",
"deprecated28": "",
"deprecated3": {},
"deprecated30": "",
"deprecated31": false,
"deprecated32": "",
"deprecated35": 0,
"deprecated36": 0,
"deprecated39": "",
"deprecated4": 0,
"deprecated41": 0,
"deprecated43": false,
"deprecated44": 0,
"deprecated5": false,
"deprecated6": "",
"deprecated7": 0,
"deprecated8": "",
"deprecated9": "",
"detect_anchor_leave": 0,
"disable_preload_stream": false,
"disable_preview_sub_only": 0,
"disable_screen_record": false,
"drawer_tab_position": "",
"drop_comment_group": 0,
"ec_age_interval": 0,
"ecom_room_type": 0,
"ecommerce_room_tags": [],
"effect_frame_upload_demotion": 0,
"effect_info": [],
"emoji_list": [],
"enable_optimize_sensitive_word": false,
"enable_server_drop": 0,
"enable_stream_encryption": false,
"enlarge_view_info": {
"ab_result": false,
"enabler_enlarge_view": false,
"in_enlarge_blacklist": false,
"landscape_view": 0,
"portrait_view": 0
},
"existed_commerce_goods": false,
"existed_ttls_goods": false,
"fansclub_msg_style": 2,
"feed_room_label": {
"avg_color": "#BCBCE0",
"height": 0,
"image_type": 0,
"is_animated": false,
"open_web_url": "",
"uri": "webcast-sg/2ea90002aca1159b5c67",
"url_list": [
"https://p16-webcast.tiktokcdn.com/img/alisg/webcast-sg/2ea90002aca1159b5c67~tplv-obj.image",
"https://p19-webcast.tiktokcdn.com/img/alisg/webcast-sg/2ea90002aca1159b5c67~tplv-obj.image"
],
"width": 0
},
"feed_room_labels": [],
"filter_msg_rules": [],
"finish_reason": 0,
"finish_time": 1773806468,
"finish_url": "",
"finish_url_v2": "",
"follow_msg_style": 2,
"forbidden_copy": false,
"forum_extra_data": "",
"fyp_skylight_avatar_refresh": 0,
"game_demo": 0,
"game_tag": [
{
"bundle_id": "",
"full_name": "",
"game_category": [],
"gar": [],
"hashtag_id": [
5
],
"hashtag_list": [],
"id": 102,
"is_new_game": false,
"landscape": 0,
"package_name": "",
"short_name": "",
"show_name": "Garena Free Fire"
}
],
"gift_msg_style": 2,
"gift_poll_vote_enabled": false,
"group_source": 0,
"gs_guessing_xtab_ab_param": 0,
"has_commerce_goods": false,
"has_more_history_comment": false,
"has_ttls_goods": false,
"has_ttls_live_permission": false,
"has_used_music": false,
"has_viewer_wishes_game_tricks": false,
"hashtag": {
"id": 5,
"image": {
"avg_color": "#DCF4FA",
"height": 0,
"image_type": 0,
"is_animated": false,
"open_web_url": "",
"uri": "webcast-sg/5Gaming.png",
"url_list": [
"https://p16-webcast.tiktokcdn.com/img/alisg/webcast-sg/5Gaming.png~tplv-obj.image",
"https://p19-webcast.tiktokcdn.com/img/alisg/webcast-sg/5Gaming.png~tplv-obj.image"
],
"width": 0
},
"namespace": 0,
"title": "Gaming"
},
"have_wishlist": false,
"history_comment_cursor": "",
"history_comment_list": [],
"host_board_status": 0,
"hot_sentence_info": "",
"id": 7618370406579244000,
"id_str": "7618370406579243792",
"idc_region": "",
"indicators": [],
"intended_drm": "",
"interaction_question_version": 1,
"interception": false,
"introduction": "",
"is_game": 0,
"is_gated_room": false,
"is_replay": false,
"is_reposted_expect": 0,
"is_show_user_card_switch": false,
"is_stream_low_latency": false,
"is_tag2_sfv_relation_pair": false,
"last_ping_time": 1773806468,
"layout": 0,
"like_agg_optimize_group": 0,
"like_count": 0,
"link_mic": {
"ab_infos": {},
"audience_id_list": [],
"battle_scores": [],
"battle_settings": {
"battle_id": 0,
"battle_status": 0,
"channel_id": 0,
"duration": 0,
"finished": 0,
"match_type": 0,
"start_time": 0,
"start_time_ms": 0,
"theme": ""
},
"channel_id": 0,
"channel_info": {
"dimension": 0,
"group_channel_id": 0,
"inner_channel_id": 0,
"layout": 0,
"vendor": 0
},
"followed_count": 0,
"link_mic_channel": 0,
"linked_user_list": [],
"linker_mode": 0,
"linkmic_unify_channel_id": 0,
"multi_guest_enable": false,
"multi_live_enum": 1,
"rival_anchor_id": 0,
"show_user_list": []
},
"linker_map": {},
"linkmic_layout": 0,
"lite_user_not_visible": false,
"lite_user_visible": false,
"live_distribution": [],
"live_id": 12,
"live_reason": "",
"live_room_mode": 6,
"live_sub_only": 0,
"live_sub_only_month": 0,
"live_sub_only_tier": 0,
"live_sub_only_use_music": 0,
"live_type_audio": false,
"live_type_linkmic": false,
"live_type_normal": false,
"live_type_sandbox": false,
"live_type_screenshot": false,
"live_type_social_live": false,
"live_type_third_party": true,
"living_room_attrs": {
"admin_flag": 0,
"rank": 0,
"room_id": 7618370406579244000,
"room_id_str": "7618370406579243792",
"silence_flag": 0
},
"log_id": "2026031812011014795160E4D0EB490726",
"lottery_finish_time": 0,
"max_continue_watch_mill_seconds": 0,
"max_preview_time": 60000,
"mosaic_status": 0,
"multi_stream_id": 0,
"multi_stream_id_str": "",
"multi_stream_net_mode": 0,
"multi_stream_scene": 0,
"multi_stream_source": 0,
"multi_stream_url": {
"alive_timestamp": 0,
"candidate_resolution": [],
"complete_push_urls": [],
"default_resolution": "",
"drm_type": 0,
"extra": {
"anchor_interact_profile": 0,
"audience_interact_profile": 0,
"bframe_enable": false,
"bitrate_adapt_strategy": 0,
"bytevc1_enable": false,
"default_bitrate": 0,
"deprecated1": false,
"fps": 0,
"gop_sec": 0,
"hardware_encode": false,
"height": 0,
"max_bitrate": 0,
"min_bitrate": 0,
"roi": false,
"super_resolution": {
"antialiasing": false,
"enable": false,
"strength": 0
},
"sw_roi": false,
"video_profile": 0,
"width": 0
},
"flv_pull_url": {},
"flv_pull_url_params": {},
"hls_pull_url": "",
"hls_pull_url_map": {},
"hls_pull_url_params": "",
"id": 0,
"id_str": "",
"live_core_sdk_data": {
"pull_data": {
"options": {
"default_preview_quality": {
"icon_type": 0,
"level": 0,
"name": "",
"resolution": "",
"sdk_key": "",
"v_codec": ""
},
"default_quality": {
"icon_type": 0,
"level": 0,
"name": "",
"resolution": "",
"sdk_key": "",
"v_codec": ""
},
"qualities": [],
"show_quality_button": false,
"support_low_latency": false
},
"stream_data": ""
},
"push_data": {
"push_stream_level": 0,
"resolution_params": {},
"stream_data": ""
}
},
"provider": 0,
"push_resolution": "",
"push_urls": [],
"resolution_name": {},
"rtmp_pull_url": "",
"rtmp_pull_url_params": "",
"rtmp_push_url": "",
"rtmp_push_url_params": "",
"stream_app_id": 0,
"stream_control_type": 0,
"stream_delay_ms": 0,
"stream_size_height": 0,
"stream_size_width": 0,
"vr_type": 0
},
"net_mode": 0,
"os_type": 0,
"owner": {
"allow_find_by_contacts": false,
"allow_others_download_video": false,
"allow_others_download_when_sharing_video": false,
"allow_share_show_profile": false,
"allow_show_in_gossip": false,
"allow_show_my_action": false,
"allow_strange_comment": false,
"allow_unfollower_comment": false,
"allow_use_linkmic": false,
"avatar_large": {
"avg_color": "",
"height": 0,
"image_type": 0,
"is_animated": false,
"open_web_url": "",
"uri": "1080x1080/tos-alisg-avt-0068/c9a5785324b649b280c79e66f943284d",
"url_list": [
"https://p16-sign-sg.tiktokcdn.com/tos-alisg-avt-0068/c9a5785324b649b280c79e66f943284d~tplv-tiktokx-cropcenter:1080:1080.webp?dr=14579&refresh_token=565c5068&x-expires=1773979200&x-signature=4rPFw5Emdir3ILhgtkG8sQ8OfiA%3D&t=4d5b0474&ps=13740610&shp=a5d48078&shcp=fdd36af4&idc=my2",
"https://p16-sign-sg.tiktokcdn.com/tos-alisg-avt-0068/c9a5785324b649b280c79e66f943284d~tplv-tiktokx-cropcenter:1080:1080.jpeg?dr=14579&refresh_token=d2d51c80&x-expires=1773979200&x-signature=%2FQbjka3q7p135ux6jv9I2257Cpc%3D&t=4d5b0474&ps=13740610&shp=a5d48078&shcp=fdd36af4&idc=my2"
],
"width": 0
},
"avatar_medium": {
"avg_color": "",
"height": 0,
"image_type": 0,
"is_animated": false,
"open_web_url": "",
"uri": "720x720/tos-alisg-avt-0068/c9a5785324b649b280c79e66f943284d",
"url_list": [
"https://p16-sign-sg.tiktokcdn.com/tos-alisg-avt-0068/c9a5785324b649b280c79e66f943284d~tplv-tiktokx-cropcenter:720:720.webp?dr=14579&refresh_token=5c0fc299&x-expires=1773979200&x-signature=%2BzI%2Ft4cpsgJwhJ%2F2dE%2Fm5a%2BoG%2Fo%3D&t=4d5b0474&ps=13740610&shp=a5d48078&shcp=fdd36af4&idc=my2",
"https://p16-sign-sg.tiktokcdn.com/tos-alisg-avt-0068/c9a5785324b649b280c79e66f943284d~tplv-tiktokx-cropcenter:720:720.jpeg?dr=14579&refresh_token=8e896b7c&x-expires=1773979200&x-signature=6qmH8YO8yXOOSEqS8%2FF%2B22YVIuM%3D&t=4d5b0474&ps=13740610&shp=a5d48078&shcp=fdd36af4&idc=my2"
],
"width": 0
},
"avatar_thumb": {
"avg_color": "",
"height": 0,
"image_type": 0,
"is_animated": false,
"open_web_url": "",
"uri": "100x100/tos-alisg-avt-0068/c9a5785324b649b280c79e66f943284d",
"url_list": [
"https://p16-sign-sg.tiktokcdn.com/tos-alisg-avt-0068/c9a5785324b649b280c79e66f943284d~tplv-tiktokx-cropcenter:100:100.webp?dr=14579&refresh_token=9a0995be&x-expires=1773975600&x-signature=Mv7i71RF8SnpQ2jy8NMZxrbm0zQ%3D&t=4d5b0474&ps=13740610&shp=a5d48078&shcp=3ea1580e&idc=my2",
"https://p16-sign-sg.tiktokcdn.com/tos-alisg-avt-0068/c9a5785324b649b280c79e66f943284d~tplv-tiktokx-cropcenter:100:100.jpeg?dr=14579&refresh_token=673157ab&x-expires=1773975600&x-signature=7UMrQX%2FJahwgvAllnRowQqbubwg%3D&t=4d5b0474&ps=13740610&shp=a5d48078&shcp=3ea1580e&idc=my2"
],
"width": 0
},
"badge_image_list": [],
"badge_list": [],
"bg_img_url": "",
"bio_description": "Galería: CRIS 🦁🌹🤠🩷BLOODFIRE✈️ITPMendoza🐋CASTRO🌌F7Ramos🦢CHAPIN😘",
"block_status": 0,
"border_list": [],
"comment_restrict": 0,
"commerce_webcast_config_ids": [],
"constellation": "",
"create_time": 0,
"deprecated1": 0,
"deprecated12": 0,
"deprecated13": 0,
"deprecated15": 0,
"deprecated16": false,
"deprecated17": false,
"deprecated18": "",
"deprecated19": false,
"deprecated2": 0,
"deprecated21": 0,
"deprecated28": false,
"deprecated29": "",
"deprecated3": 0,
"deprecated4": 0,
"deprecated5": "",
"deprecated6": 0,
"deprecated7": "",
"deprecated8": 0,
"disable_ichat": 0,
"display_id": "eltomboff",
"enable_ichat_img": 0,
"exp": 0,
"fan_ticket_count": 0,
"fans_club_info": {
"badge": {
"avg_color": "",
"height": 0,
"image_type": 35,
"is_animated": false,
"open_web_url": "",
"uri": "webcast-va/fans_left_up_corner_entrance_icon_lv1_v0.png",
"url_list": [
"https://p16-webcast.tiktokcdn.com/webcast-va/fans_left_up_corner_entrance_icon_lv1_v0.png~tplv-obj.image",
"https://p19-webcast.tiktokcdn.com/webcast-va/fans_left_up_corner_entrance_icon_lv1_v0.png~tplv-obj.image"
],
"width": 0
},
"fans_club_name": "",
"fans_count": 0,
"fans_level": 0,
"fans_score": 0,
"is_sleeping": false
},
"fold_stranger_chat": false,
"follow_info": {
"follow_status": 0,
"follower_count": 520275,
"following_count": 58,
"push_status": 0
},
"follow_status": 0,
"ichat_restrict_type": 0,
"id": 6788752804346496000,
"id_str": "6788752804346496006",
"is_anchor_marked": false,
"is_block": false,
"is_follower": false,
"is_following": false,
"is_subscribe": false,
"link_mic_stats": 2,
"media_badge_image_list": [],
"mint_type_label": [
7160893592603462000
],
"modify_time": 1773804171,
"need_profile_guide": false,
"new_real_time_icons": [],
"nickname": "EL TOMBO FF 👮🏼♂️",
"own_room": {
"room_ids": [
7618370406579244000
],
"room_ids_str": [
"7618370406579243792"
]
},
"pay_grade": {
"deprecated20": 0,
"deprecated22": 0,
"deprecated23": 0,
"deprecated24": 0,
"deprecated25": 0,
"deprecated26": 0,
"grade_banner": "",
"grade_describe": "",
"grade_icon_list": [],
"level": 0,
"name": "",
"next_name": "",
"next_privileges": "",
"score": 0,
"screen_chat_type": 0,
"upgrade_need_consume": 0
},
"pay_score": 0,
"pay_scores": 0,
"push_comment_status": false,
"push_digg": false,
"push_follow": false,
"push_friend_action": false,
"push_ichat": false,
"push_status": false,
"push_video_post": false,
"push_video_recommend": false,
"real_time_icons": [],
"scm_label": "",
"sec_uid": "MS4wLjABAAAA3jFDUnObfQ46dsWci1xMiTGzkkUFvww0YLThyqVL3XWTvw6RhDBT8Bk8AsXagwMT",
"secret": 0,
"share_qrcode_uri": "",
"special_id": "",
"status": 1,
"subscribe_info": {
"anchor_gift_sub_auth": false,
"badge": {
"is_customized": false
},
"enable_subscription": false,
"is_in_grace_period": false,
"is_sol_eligible": false,
"is_subscribe": false,
"is_subscribed_to_anchor": false,
"package_id": "",
"qualification": true,
"sol_room_display_text": "",
"status": 0,
"sub_end_time": 0,
"sub_split_status": {
"cur_period": 3,
"is_old_sub_creator": true
},
"subscriber_count": 0,
"timer_detail": {
"anchor_id": 0,
"anchor_side_title": "",
"antidirt_status": 0,
"audit_status": 0,
"last_pause_timestamp_s": 0,
"remaining_time_s": 0,
"screen_h": 0,
"screen_w": 0,
"start_countdown_time_s": 0,
"start_timestamp_s": 0,
"sticker_x": 0,
"sticker_y": 0,
"sub_count": 0,
"time_increase_cap_s": 0,
"time_increase_per_sub_s": 0,
"time_increase_reach_cap": false,
"timer_id": 0,
"timer_status": 0,
"timestamp_s": 0,
"total_pause_time_s": 0,
"total_time_s": 0,
"user_side_title": ""
},
"user_gift_sub_auth": false
},
"ticket_count": 0,
"top_fans": [],
"top_vip_no": 0,
"upcoming_event_list": [],
"user_attr": {
"admin_permissions": {},
"has_voting_function": false,
"is_admin": false,
"is_channel_admin": false,
"is_muted": false,
"is_super_admin": false,
"mute_duration": 0
},
"user_role": 0,
"verified": false,
"verified_content": "",
"verified_reason": "",
"with_car_management_permission": false,
"with_commerce_permission": false,
"with_fusion_shop_entry": false
},
"owner_device_id": 0,
"owner_device_id_str": "",
"owner_user_id": 6788752804346496000,
"owner_user_id_str": "6788752804346496006",
"paid_event": {
"event_id": 0,
"paid_type": 0
},
"partnership_info": {
"game_info_list": [],
"partnership_room": false,
"promoting_drops_id": "",
"promoting_game_id": "",
"promoting_room": false,
"promoting_task_id": "",
"promoting_task_type": 0,
"show_task_id": "",
"show_task_type": 0,
"task_id_list": []
},
"pico_live_type": 0,
"polling_star_comment": false,
"pre_enter_time": 0,
"preview_flow_tag": 0,
"quota_config": {},
"rank_comment_groups": [],
"ranklist_audience_type": 0,
"regional_restricted": {
"block_list": []
},
"relation_tag": "",
"replay": true,
"repost_note": "",
"reposted": false,
"room_audit_status": 0,
"room_auth": {
"Banner": 1,
"BroadcastMessage": 0,
"Chat": true,
"ChatL2": false,
"ChatSubOnly": false,
"CommentMention": 0,
"CommercePermission": 0,
"CommunityFlagged": false,
"CommunityFlaggedReview": false,
"CustomizableGiftPoll": 0,
"CustomizablePoll": 0,
"Danmaku": false,
"Digg": true,
"DonationSticker": 2,
"EmotePoll": 0,
"EnableFansLevel": false,
"EnableShowUserUV": false,
"EnigmaWhisper": 0,
"EventPromotion": 0,
"Explore": false,
"GameRankingSwitch": 0,
"Gift": true,
"GiftAnchorMt": 1,
"GiftPoll": 0,
"GoldenEnvelope": 0,
"GoldenEnvelopeActivity": 0,
"InteractionQuestion": true,
"Landscape": 2,
"LandscapeChat": 0,
"LuckMoney": true,
"MultiEnableReserve": false,
"Pictionary": 0,
"PictionaryBubble": 0,
"PictionaryPermission": 0,
"Poll": 0,
"Promote": false,
"PromoteOther": 0,
"Props": false,
"PublicScreen": 1,
"QuickChat": 0,
"Rank": 0,
"RankingChangeAlterSwitch": 0,
"RoomContributor": false,
"SecretRoom": 0,
"Share": true,
"ShareEffect": 0,
"ShoppingRanking": 0,
"SpamComments": false,
"UserCard": true,
"UserCount": 1,
"ViewerWishes": 0,
"Viewers": false,
"anchor_level_permission": {
"InteractionQuestion": 0,
"beauty": 0,
"comment_filter": 0,
"comment_setting": 0,
"customizable_poll": 0,
"donation_sticker": 0,
"effects": 0,
"flip": 0,
"full_screen_mode": 0,
"goody_bag": 0,
"hear_your_own_voice": 0,
"karaoke": 0,
"live_background": 0,
"live_center": 0,
"live_intro": 0,
"mirror": 0,
"moderator_setting": 0,
"pause_live": 0,
"pictionary": 0,
"pin": 0,
"play_together": 0,
"poll": 0,
"portal": 0,
"promote": 0,
"share": 0,
"sticker": 0,
"topic": 0,
"treasure_box": 0,
"viewer_rank_list": 0,
"voice_effect": 0
},
"comment_tray_status": 0,
"credit_entrance_for_audience": false,
"deprecated1": false,
"deprecated118": [],
"deprecated119": 0,
"deprecated2": 0,
"deprecated3": 0,
"deprecated4": 0,
"deprecated5": 0,
"deprecated6": 0,
"deprecated7": 0,
"deprecated8": 0,
"deprecated9": 0,
"game_guess_permission": false,
"guess_entrance_for_host": false,
"show_credit_widget": false,
"transaction_history": 1,
"use_user_pv": false
},
"room_auth_message": {},
"room_create_ab_param": "{\"ai_live_summary\":0,\"auto_post_living\":0,\"autocut_opt_strategy_revert\":false,\"check_ping_no_streaming_short_close\":0,\"compensation_push\":0,\"count_strategy\":0,\"create_room_continue_optimize\":0,\"enable_revenue_tips_moderator_comment\":1,\"fans_privilege_upgrade\":1,\"game_multi_guess_creator\":1,\"game_use_new_virtual_app_id\":2,\"gb_obs_use_virtual_app_id\":0,\"gift_poll_optimize\":1,\"go_live_with_vip_stream\":0,\"heartme_gift_text_enabled\":true,\"host_lop_realtime_settle\":0,\"linkmic_ab_params\":{\"enable_effect_layout_animation\":true,\"enable_game_linkmic_charm\":true,\"linkmic_anchor_co_host_multi_guest_reservation\":1,\"linkmic_floating_layout_opt_style_v2\":2,\"live_linkmic_enable_state_consistency\":3,\"multi_guest_skip_tip_for_enlarge_another\":true},\"lite_user_not_visible\":false,\"live_cohost_cross_room_push_arch_enable\":true,\"live_cohost_timeout_strategy_group\":0,\"live_replay_highlight_recover\":false,\"live_replay_highlight_refactor\":0,\"live_share_post\":false,\"ls_auto_post\":0,\"moderator_tips_v2\":1,\"new_platform_badges\":false,\"obs_use_new_virtual_app_id\":0,\"pictionary_bubble\":0,\"pictionary_permission\":0,\"poll_template_optimize_group\":2,\"push_concurrency\":0,\"room_has_pin\":true,\"room_pin_duration\":60,\"sea_obs_use_virtual_app_id\":0,\"show_subscription_barrage_message\":false,\"show_subscription_enter_message\":false,\"sub_only_live_moderator\":false,\"update_room_status_optimize\":0,\"use_hybrid_golive_net\":0,\"use_new_anchor_net_control\":true,\"wave_optimize_strategy\":2}",
"room_layout": 0,
"room_llm_title": "",
"room_pcu": 0,
"room_sticker_list": [],
"room_tabs": [],
"room_tag": 0,
"rtc_app_id": "",
"scroll_config": "",
"search_id": 0,
"secret_room_access": false,
"share_msg_style": 2,
"share_url": "https://m.tiktok.com/share/live/7618370406579243792/?language=en&u_code=f0ja7h22380b90",
"short_title": "",
"short_touch_items": [],
"show_emoji_list": false,
"show_star_comment_entrance": false,
"show_watch_live_cta": false,
"social_interaction": {
"linkmic_scene_linker": {},
"multi_live": {
"ai_summary": "",
"audience_send_gifts_to_all_enum": 0,
"audience_shared_invitee_panel_type": 0,
"background_sticker_id": "",
"extra_info": {},
"hangout_card_tag_list": [],
"host_gifter_linkmic_enum": 0,
"host_multi_guest_dev_mode": 0,
"host_send_gifts_to_all_enum": 0,
"is_eligible_for_apply_auto_approve": false,
"linkmic_service_version": 0,
"top_live_guide": "",
"top_live_title": "",
"trigger_guide_time": 0,
"try_open_multi_guest_when_create_room": false,
"user_settings": {
"applier_sort_gift_score_threshold": 0,
"applier_sort_setting": 0,
"multi_guest_allow_request_from_followers": 0,
"multi_guest_allow_request_from_friends": 0,
"multi_guest_allow_request_from_others": 0,
"multi_guest_apply_auto_approve": 0,
"multi_guest_disable_video_linkmic": 0,
"multi_guest_reset_point_after_leave": 0,
"multi_live_apply_permission": 1
},
"viewer_gifter_linkmic_enum": 0
}
},
"square_cover_img": {
"avg_color": "#666666",
"height": 0,
"image_type": 0,
"is_animated": false,
"open_web_url": "",
"uri": "webcast-sg/0e36ad4b0ee9daf1a4fb22baebf0df72",
"url_list": [
"https://p16-webcast.tiktokcdn.com/webcast-sg/0e36ad4b0ee9daf1a4fb22baebf0df72~tplv-obj.image",
"https://p19-webcast.tiktokcdn.com/webcast-sg/0e36ad4b0ee9daf1a4fb22baebf0df72~tplv-obj.image"
],
"width": 0
},
"start_time": 0,
"stats": {
"comment_count": 0,
"deprecated1": 0,
"deprecated2": "",
"digg_count": 0,
"enter_count": 191992,
"fan_ticket": 0,
"follow_count": 689,
"gift_uv_count": 0,
"id": 7618370406579244000,
"id_str": "7618370406579243792",
"like_count": 0,
"replay_fan_ticket": 0,
"replay_viewers": 107976,
"room_follow_count": 0,
"share_count": 0,
"total_user": 191992,
"total_user_desp": "",
"user_count_composition": {
"deprecated1": 0,
"my_follow": 0,
"other": 0,
"video_detail": 0
},
"watch_user_count": 0,
"watermelon": 0
},
"status": 2,
"sticker_list": [],
"stream_id": 1848419295776211000,
"stream_id_str": "1848419295776211036",
"stream_status": 0,
"stream_url": {
"alive_timestamp": 0,
"candidate_resolution": [
"SD1",
"SD2",
"HD1"
],
"complete_push_urls": [],
"default_resolution": "SD2",
"drm_type": 0,
"extra": {
"anchor_client_info": {
"custom_info": ""
},
"anchor_interact_profile": 0,
"audience_interact_profile": 0,
"bframe_enable": false,
"bitrate_adapt_strategy": 0,
"bytevc1_enable": false,
"default_bitrate": 0,
"deprecated1": false,
"fps": 0,
"gop_sec": 0,
"hardware_encode": false,
"height": 0,
"max_bitrate": 0,
"min_bitrate": 0,
"roi": false,
"sw_roi": false,
"video_profile": 0,
"width": 0
},
"flv_pull_url": {
"HD1": "https://pull-flv-l1-sg01.tiktokcdn.com/game/stream-1848419295776211036_hd.flv?expire=1775016070&sign=1080e4ca548bd5f82ef571cc85903bc1",
"SD1": "https://pull-flv-l1-sg01.tiktokcdn.com/game/stream-1848419295776211036_ld.flv?expire=1775016070&sign=45db48801206d7678e31a57f99e25e0e",
"SD2": "https://pull-flv-l1-sg01.tiktokcdn.com/game/stream-1848419295776211036_sd.flv?expire=1775016070&sign=1f972a9f3ffee9e3e11fc53bc8901573"
},
"flv_pull_url_params": {
"HD1": "{\"v_rtbitrate\":1761760,\"v_rtbitrate_std\":62560,\"v_rtpsnr\":0,\"v_rtbitrate_pct\":1853390,\"stream_suffix\":\"hd\",\"vbitrate\":1800000,\"resolution\":\"720x1280\",\"gop\":4,\"v_rtbitrate_vpaas_timestamp\":1773806470278,\"VCodec\":\"h264\",\"Auto\":{\"Enable\":1,\"Demotion\":{\"StallCount\":4}},\"v_rtbitrate_timestamp\":1773806467018,\"cdn_name\":\"ws\"}",
"SD1": "{\"v_rtbitrate_vpaas_timestamp\":1773806470278,\"v_rtbitrate_timestamp\":1773806459089,\"gop\":4,\"v_rtbitrate\":531520,\"cdn_name\":\"ws\",\"stream_suffix\":\"ld\",\"vbitrate\":600000,\"v_rtpsnr\":0,\"Auto\":{\"Demotion\":{\"StallCount\":4},\"Enable\":1},\"VCodec\":\"h264\",\"v_rtbitrate_pct\":569430,\"v_rtbitrate_std\":23930,\"resolution\":\"360x640\"}",
"SD2": "{\"Auto\":{\"Demotion\":{\"StallCount\":4},\"Enable\":1},\"VCodec\":\"h264\",\"v_rtbitrate_timestamp\":1773793805044,\"gop\":4,\"v_rtbitrate_pct\":1227160,\"cdn_name\":\"ws\",\"resolution\":\"540x960\",\"stream_suffix\":\"sd\",\"v_rtbitrate\":1184740,\"v_rtpsnr\":0,\"v_rtbitrate_std\":137180,\"vbitrate\":1200000,\"v_rtbitrate_vpaas_timestamp\":1773806470278}"
},
"hls_pull_url": "https://pull-hls-l1-sg01.tiktokcdn.com/game/stream-1848419295776211036/playlist.m3u8?expire=1775016070&session_id=148-2026031812011014795160E4D0EB490726&sign=6c52550fdc11d0e2afd49c3a50c66e4f",
"hls_pull_url_map": {},
"hls_pull_url_params": "{\"resolution\":\"1080x1920\",\"gop\":4,\"cdn_name\":\"ws\",\"VCodec\":\"h264\",\"Auto\":{\"Demotion\":{\"StallCount\":4},\"Enable\":1},\"vbitrate\":8400000}",
"id": 1848419295776211000,
"id_str": "1848419295776211036",
"live_core_sdk_data": {
"pull_data": {
"options": {
"default_preview_quality": {
"icon_type": 0,
"level": 0,
"name": "",
"resolution": "",
"sdk_key": "",
"v_codec": ""
},
"default_quality": {
"icon_type": 0,
"level": 0,
"name": "540p",
"resolution": "",
"sdk_key": "sd",
"v_codec": ""
},
"qualities": [
{
"icon_type": 6,
"level": 10,
"name": "Original",
"resolution": "",
"sdk_key": "origin",
"v_codec": ""
},
{
"icon_type": 4,
"level": 6,
"name": "1080p60",
"resolution": "",
"sdk_key": "uhd_60",
"v_codec": ""
},
{
"icon_type": 3,
"level": 4,
"name": "720p60",
"resolution": "",
"sdk_key": "hd_60",
"v_codec": ""
},
{
"icon_type": 3,
"level": 3,
"name": "720p",
"resolution": "",
"sdk_key": "hd",
"v_codec": ""
},
{
"icon_type": 2,
"level": 2,
"name": "540p",
"resolution": "",
"sdk_key": "sd",
"v_codec": ""
},
{
"icon_type": 1,
"level": 1,
"name": "360p",
"resolution": "",
"sdk_key": "ld",
"v_codec": ""
}
],
"show_quality_button": false,
"support_low_latency": false
},
"stream_data": "{\"common\":{\"session_id\":\"148-2026031812011014795160E4D0EB490726\",\"rule_ids\":\"{\\\"ab_version_trace\\\":null,\\\"sched\\\":\\\"{\\\\\\\"result\\\\\\\":{\\\\\\\"hit\\\\\\\":\\\\\\\"default\\\\\\\",\\\\\\\"cdn\\\\\\\":192}}\\\"}\",\"user_count\":28,\"peer_anchor_level\":38},\"data\":{\"origin\":{\"main\":{\"flv\":\"https://pull-flv-l1-sg01.tiktokcdn.com/game/stream-1848419295776211036.flv?expire=1775016070&sign=09f8f551ed25dd2492c1f36c21a99f5d\",\"hls\":\"https://pull-hls-l1-sg01.tiktokcdn.com/game/stream-1848419295776211036/playlist.m3u8?expire=1775016070&sign=6c52550fdc11d0e2afd49c3a50c66e4f\",\"cmaf\":\"\",\"dash\":\"\",\"lls\":\"https://pull-lls-l1-sg01.tiktokcdn.com/game/stream-1848419295776211036.sdp?expire=1775016070&sign=676cf83b30b1f79eb93cc2a4c626243e\",\"tsl\":\"\",\"tile\":\"\",\"rtc\":\"\",\"sdk_params\":\"{\\\"resolution\\\":\\\"1080x1920\\\",\\\"gop\\\":4,\\\"cdn_name\\\":\\\"ws\\\",\\\"VCodec\\\":\\\"h264\\\",\\\"Auto\\\":{\\\"Demotion\\\":{\\\"StallCount\\\":4},\\\"Enable\\\":1},\\\"vbitrate\\\":8400000}\"}},\"hd\":{\"main\":{\"flv\":\"https://pull-flv-l1-sg01.tiktokcdn.com/game/stream-1848419295776211036_hd.flv?expire=1775016070&sign=1080e4ca548bd5f82ef571cc85903bc1\",\"hls\":\"https://pull-hls-l1-sg01.tiktokcdn.com/game/stream-1848419295776211036_hd/playlist.m3u8?expire=1775016070&sign=eb701676b389d80c687773b5e0f4d419\",\"cmaf\":\"\",\"dash\":\"\",\"lls\":\"https://pull-lls-l1-sg01.tiktokcdn.com/game/stream-1848419295776211036_hd.sdp?expire=1775016070&sign=944a5503d3db1a657b5894bfea67cdb8\",\"tsl\":\"\",\"tile\":\"\",\"rtc\":\"\",\"sdk_params\":\"{\\\"v_rtbitrate\\\":1761760,\\\"v_rtbitrate_std\\\":62560,\\\"v_rtpsnr\\\":0,\\\"v_rtbitrate_pct\\\":1853390,\\\"stream_suffix\\\":\\\"hd\\\",\\\"vbitrate\\\":1800000,\\\"resolution\\\":\\\"720x1280\\\",\\\"gop\\\":4,\\\"v_rtbitrate_vpaas_timestamp\\\":1773806470278,\\\"VCodec\\\":\\\"h264\\\",\\\"Auto\\\":{\\\"Enable\\\":1,\\\"Demotion\\\":{\\\"StallCount\\\":4}},\\\"v_rtbitrate_timestamp\\\":1773806467018,\\\"cdn_name\\\":\\\"ws\\\"}\"}},\"sd\":{\"main\":{\"flv\":\"https://pull-flv-l1-sg01.tiktokcdn.com/game/stream-1848419295776211036_sd.flv?expire=1775016070&sign=1f972a9f3ffee9e3e11fc53bc8901573\",\"hls\":\"https://pull-hls-l1-sg01.tiktokcdn.com/game/stream-1848419295776211036_sd/playlist.m3u8?expire=1775016070&sign=0737058acd1428560b27d3aa1933e66d\",\"cmaf\":\"\",\"dash\":\"\",\"lls\":\"https://pull-lls-l1-sg01.tiktokcdn.com/game/stream-1848419295776211036_sd.sdp?expire=1775016070&sign=8ccbb3d0ca6b8919802a09c61fac80d2\",\"tsl\":\"\",\"tile\":\"\",\"rtc\":\"\",\"sdk_params\":\"{\\\"Auto\\\":{\\\"Demotion\\\":{\\\"StallCount\\\":4},\\\"Enable\\\":1},\\\"VCodec\\\":\\\"h264\\\",\\\"v_rtbitrate_timestamp\\\":1773793805044,\\\"gop\\\":4,\\\"v_rtbitrate_pct\\\":1227160,\\\"cdn_name\\\":\\\"ws\\\",\\\"resolution\\\":\\\"540x960\\\",\\\"stream_suffix\\\":\\\"sd\\\",\\\"v_rtbitrate\\\":1184740,\\\"v_rtpsnr\\\":0,\\\"v_rtbitrate_std\\\":137180,\\\"vbitrate\\\":1200000,\\\"v_rtbitrate_vpaas_timestamp\\\":1773806470278}\"}},\"ld\":{\"main\":{\"flv\":\"https://pull-flv-l1-sg01.tiktokcdn.com/game/stream-1848419295776211036_ld.flv?expire=1775016070&sign=45db48801206d7678e31a57f99e25e0e\",\"hls\":\"https://pull-hls-l1-sg01.tiktokcdn.com/game/stream-1848419295776211036_ld/playlist.m3u8?expire=1775016070&sign=c7949cc1291b8291eb3bac99d16faf75\",\"cmaf\":\"\",\"dash\":\"\",\"lls\":\"https://pull-lls-l1-sg01.tiktokcdn.com/game/stream-1848419295776211036_ld.sdp?expire=1775016070&sign=4702087b577c98c27a1985fd05bd581d\",\"tsl\":\"\",\"tile\":\"\",\"rtc\":\"\",\"sdk_params\":\"{\\\"v_rtbitrate_vpaas_timestamp\\\":1773806470278,\\\"v_rtbitrate_timestamp\\\":1773806459089,\\\"gop\\\":4,\\\"v_rtbitrate\\\":531520,\\\"cdn_name\\\":\\\"ws\\\",\\\"stream_suffix\\\":\\\"ld\\\",\\\"vbitrate\\\":600000,\\\"v_rtpsnr\\\":0,\\\"Auto\\\":{\\\"Demotion\\\":{\\\"StallCount\\\":4},\\\"Enable\\\":1},\\\"VCodec\\\":\\\"h264\\\",\\\"v_rtbitrate_pct\\\":569430,\\\"v_rtbitrate_std\\\":23930,\\\"resolution\\\":\\\"360x640\\\"}\"}},\"uhd_60\":{\"main\":{\"flv\":\"https://pull-flv-l1-sg01.tiktokcdn.com/game/stream-1848419295776211036_uhd60.flv?expire=1775016070&sign=c5bffc91e7a5dcde535b3ded0af0fc7f\",\"hls\":\"https://pull-hls-l1-sg01.tiktokcdn.com/game/stream-1848419295776211036_uhd60/playlist.m3u8?expire=1775016070&sign=e3095f367e0755890e81b9a6cc829399\",\"cmaf\":\"\",\"dash\":\"\",\"lls\":\"https://pull-lls-l1-sg01.tiktokcdn.com/game/stream-1848419295776211036_uhd60.sdp?expire=1775016070&sign=c3385b772371e0a70690034e1e075f15\",\"tsl\":\"\",\"tile\":\"\",\"rtc\":\"\",\"sdk_params\":\"{\\\"gop\\\":4,\\\"cdn_name\\\":\\\"ws\\\",\\\"Auto\\\":{\\\"Demotion\\\":{\\\"StallCount\\\":4},\\\"Enable\\\":1},\\\"VCodec\\\":\\\"h264\\\",\\\"stream_suffix\\\":\\\"uhd60\\\",\\\"vbitrate\\\":5000000,\\\"resolution\\\":\\\"1080x1920\\\"}\"}},\"hd_60\":{\"main\":{\"flv\":\"https://pull-flv-l1-sg01.tiktokcdn.com/game/stream-1848419295776211036_hd60.flv?expire=1775016070&sign=5dab7b121657e298c66ebf070f2fd97b\",\"hls\":\"https://pull-hls-l1-sg01.tiktokcdn.com/game/stream-1848419295776211036_hd60/playlist.m3u8?expire=1775016070&sign=9c31fd6531305fed8fab68b87d2736d1\",\"cmaf\":\"\",\"dash\":\"\",\"lls\":\"https://pull-lls-l1-sg01.tiktokcdn.com/game/stream-1848419295776211036_hd60.sdp?expire=1775016070&sign=2d13eb7d1aa6a867368a81139211dfe0\",\"tsl\":\"\",\"tile\":\"\",\"rtc\":\"\",\"sdk_params\":\"{\\\"resolution\\\":\\\"720x1280\\\",\\\"Auto\\\":{\\\"Enable\\\":1,\\\"Demotion\\\":{\\\"StallCount\\\":4}},\\\"VCodec\\\":\\\"h264\\\",\\\"gop\\\":4,\\\"cdn_name\\\":\\\"ws\\\",\\\"stream_suffix\\\":\\\"hd60\\\",\\\"vbitrate\\\":3000000}\"}},\"ao\":{\"main\":{\"flv\":\"https://pull-flv-l1-sg01.tiktokcdn.com/game/stream-1848419295776211036.flv?expire=1775016070&sign=09f8f551ed25dd2492c1f36c21a99f5d&only_audio=1\",\"hls\":\"\",\"cmaf\":\"\",\"dash\":\"\",\"lls\":\"\",\"tsl\":\"\",\"tile\":\"\",\"rtc\":\"\",\"sdk_params\":\"{\\\"vbitrate\\\":0,\\\"resolution\\\":\\\"\\\",\\\"gop\\\":4,\\\"cdn_name\\\":\\\"ws\\\",\\\"stream_suffix\\\":\\\"ao\\\",\\\"Auto\\\":{\\\"Enable\\\":1,\\\"Demotion\\\":{\\\"StallCount\\\":4}},\\\"VCodec\\\":\\\"h264\\\"}\"}}}}"
},
"push_data": {
"push_stream_level": 0,
"resolution_params": {},
"stream_data": ""
}
},
"provider": 0,
"push_resolution": "",
"push_urls": [],
"resolution_name": {
"AUTO": "AUTO",
"FULL_HD1": "1080p",
"HD1": "720p",
"ORIGION": "Original",
"SD1": "360p",
"SD2": "540p",
"pm_mt_video_1080p60": "1080p60",
"pm_mt_video_720p60": "720p60",
"ttlive_videoQuality_option_2k": "2K"
},
"rtmp_pull_url": "https://pull-flv-l1-sg01.tiktokcdn.com/game/stream-1848419295776211036.flv?expire=1775016070&session_id=148-2026031812011014795160E4D0EB490726&sign=09f8f551ed25dd2492c1f36c21a99f5d",
"rtmp_pull_url_params": "{\"resolution\":\"1080x1920\",\"gop\":4,\"cdn_name\":\"ws\",\"VCodec\":\"h264\",\"Auto\":{\"Demotion\":{\"StallCount\":4},\"Enable\":1},\"vbitrate\":8400000}",
"rtmp_push_url": "",
"rtmp_push_url_params": "",
"stream_app_id": 0,
"stream_control_type": 0,
"stream_delay_ms": 0,
"stream_size_height": 0,
"stream_size_width": 0,
"vr_type": 0
},
"stream_url_filtered_info": {
"is_gated_room": false,
"is_paid_event": false
},
"sub_tag": 0,
"support_quiz": 0,
"title": "cuenta mr stiven",
"top_fans": [
{
"fan_ticket": 5889,
"user": {
"allow_find_by_contacts": false,
"allow_others_download_video": false,
"allow_others_download_when_sharing_video": false,
"allow_share_show_profile": false,
"allow_show_in_gossip": false,
"allow_show_my_action": false,
"allow_strange_comment": false,
"allow_unfollower_comment": false,
"allow_use_linkmic": false,
"avatar_large": {
"avg_color": "",
"height": 0,
"image_type": 0,
"is_animated": false,
"open_web_url": "",
"uri": "1080x1080/tos-maliva-avt-0068/4eecc69819032da43be65480298de70f",
"url_list": [
"https://p16-sign-va.tiktokcdn.com/tos-maliva-avt-0068/4eecc69819032da43be65480298de70f~tplv-tiktokx-cropcenter:1080:1080.webp?dr=14579&refresh_token=dfdaf54d&x-expires=1773979200&x-signature=LQNU09FUguxUMw%2FVrRXiFiiN1yg%3D&t=4d5b0474&ps=13740610&shp=a5d48078&shcp=fdd36af4&idc=my3",
"https://p16-sign-va.tiktokcdn.com/tos-maliva-avt-0068/4eecc69819032da43be65480298de70f~tplv-tiktokx-cropcenter:1080:1080.jpeg?dr=14579&refresh_token=266738ac&x-expires=1773979200&x-signature=jRvB1kfzaqZuRaNaxTdJzgOrhQY%3D&t=4d5b0474&ps=13740610&shp=a5d48078&shcp=fdd36af4&idc=my3"
],
"width": 0
},
"avatar_medium": {
"avg_color": "",
"height": 0,
"image_type": 0,
"is_animated": false,
"open_web_url": "",
"uri": "720x720/tos-maliva-avt-0068/4eecc69819032da43be65480298de70f",
"url_list": [
"https://p16-sign-va.tiktokcdn.com/tos-maliva-avt-0068/4eecc69819032da43be65480298de70f~tplv-tiktokx-cropcenter:720:720.webp?dr=14579&refresh_token=3cfb12a8&x-expires=1773979200&x-signature=XkLkxxZZxm9LN8EKw4omBHIuWDQ%3D&t=4d5b0474&ps=13740610&shp=a5d48078&shcp=fdd36af4&idc=my3",
"https://p16-sign-va.tiktokcdn.com/tos-maliva-avt-0068/4eecc69819032da43be65480298de70f~tplv-tiktokx-cropcenter:720:720.jpeg?dr=14579&refresh_token=939d166f&x-expires=1773979200&x-signature=ukG%2Fh8jRU5HCbDokYXq7DFGYEi0%3D&t=4d5b0474&ps=13740610&shp=a5d48078&shcp=fdd36af4&idc=my3"
],
"width": 0
},
"avatar_thumb": {
"avg_color": "",
"height": 0,
"image_type": 0,
"is_animated": false,
"open_web_url": "",
"uri": "100x100/tos-maliva-avt-0068/4eecc69819032da43be65480298de70f",
"url_list": [
"https://p16-sign-va.tiktokcdn.com/tos-maliva-avt-0068/4eecc69819032da43be65480298de70f~tplv-tiktokx-cropcenter:100:100.webp?dr=14579&refresh_token=914829a8&x-expires=1773979200&x-signature=FqLSj1ywnkyxKyHV1tl6KleqV%2FU%3D&t=4d5b0474&ps=13740610&shp=a5d48078&shcp=fdd36af4&idc=my3",
"https://p16-sign-va.tiktokcdn.com/tos-maliva-avt-0068/4eecc69819032da43be65480298de70f~tplv-tiktokx-cropcenter:100:100.jpeg?dr=14579&refresh_token=2743c2a2&x-expires=1773979200&x-signature=z5PhTUb6oI9W%2BFh609cquNwipF0%3D&t=4d5b0474&ps=13740610&shp=a5d48078&shcp=fdd36af4&idc=my3"
],
"width": 0
},
"badge_image_list": [],
"badge_list": [],
"bg_img_url": "",
"bio_description": "",
"block_status": 0,
"border_list": [],
"comment_restrict": 0,
"commerce_webcast_config_ids": [],
"constellation": "",
"create_time": 0,
"deprecated1": 0,
"deprecated12": 0,
"deprecated13": 0,
"deprecated15": 0,
"deprecated16": false,
"deprecated17": false,
"deprecated18": "",
"deprecated19": false,
"deprecated2": 0,
"deprecated21": 0,
"deprecated28": false,
"deprecated29": "",
"deprecated3": 0,
"deprecated4": 0,
"deprecated5": "",
"deprecated6": 0,
"deprecated7": "",
"deprecated8": 0,
"disable_ichat": 0,
"display_id": "kevin_zx.07",
"enable_ichat_img": 0,
"exp": 0,
"fan_ticket_count": 0,
"fold_stranger_chat": false,
"follow_info": {
"follow_status": 0,
"follower_count": 308,
"following_count": 175,
"push_status": 0
},
"follow_status": 0,
"ichat_restrict_type": 0,
"id": 7519324647486572000,
"id_str": "7519324647486571551",
"is_anchor_marked": false,
"is_block": false,
"is_follower": false,
"is_following": false,
"is_subscribe": false,
"link_mic_stats": 2,
"media_badge_image_list": [],
"mint_type_label": [],
"modify_time": 1773800828,
"need_profile_guide": false,
"new_real_time_icons": [],
"nickname": "J E O V A N Y 🩸",
"pay_grade": {
"deprecated20": 0,
"deprecated22": 0,
"deprecated23": 0,
"deprecated24": 0,
"deprecated25": 0,
"deprecated26": 0,
"grade_banner": "",
"grade_describe": "",
"grade_icon_list": [],
"level": 0,
"name": "",
"next_name": "",
"next_privileges": "",
"score": 0,
"screen_chat_type": 0,
"upgrade_need_consume": 0
},
"pay_score": 0,
"pay_scores": 0,
"push_comment_status": false,
"push_digg": false,
"push_follow": false,
"push_friend_action": false,
"push_ichat": false,
"push_status": false,
"push_video_post": false,
"push_video_recommend": false,
"real_time_icons": [],
"scm_label": "",
"sec_uid": "MS4wLjABAAAAg4U7YuAaJLK69yPHDJt73idcP9m2z8bN8nzLyoDkkM_SFZTXskWugRri5hgW6vUl",
"secret": 0,
"share_qrcode_uri": "",
"special_id": "",
"status": 1,
"ticket_count": 0,
"top_fans": [],
"top_vip_no": 0,
"upcoming_event_list": [],
"user_attr": {
"admin_permissions": {},
"has_voting_function": false,
"is_admin": false,
"is_channel_admin": false,
"is_muted": false,
"is_super_admin": false,
"mute_duration": 0
},
"user_role": 0,
"verified": false,
"verified_content": "",
"verified_reason": "",
"with_car_management_permission": false,
"with_commerce_permission": false,
"with_fusion_shop_entry": false
}
},
{
"fan_ticket": 1829,
"user": {
"allow_find_by_contacts": false,
"allow_others_download_video": false,
"allow_others_download_when_sharing_video": false,
"allow_share_show_profile": false,
"allow_show_in_gossip": false,
"allow_show_my_action": false,
"allow_strange_comment": false,
"allow_unfollower_comment": false,
"allow_use_linkmic": false,
"avatar_large": {
"avg_color": "",
"height": 0,
"image_type": 0,
"is_animated": false,
"open_web_url": "",
"uri": "1080x1080/tos-maliva-avt-0068/0467a87bac511970395365c863688481",
"url_list": [
"https://p16-sign-va.tiktokcdn.com/tos-maliva-avt-0068/0467a87bac511970395365c863688481~tplv-tiktokx-cropcenter:1080:1080.webp?dr=14579&refresh_token=bbf0b099&x-expires=1773975600&x-signature=INwW5XDPpT3gNxD01kyrek8pOb0%3D&t=4d5b0474&ps=13740610&shp=a5d48078&shcp=fdd36af4&idc=my2",
"https://p16-sign-va.tiktokcdn.com/tos-maliva-avt-0068/0467a87bac511970395365c863688481~tplv-tiktokx-cropcenter:1080:1080.jpeg?dr=14579&refresh_token=6085a909&x-expires=1773975600&x-signature=%2Brza%2FrMeTskGCLfptQU9%2FPxkJck%3D&t=4d5b0474&ps=13740610&shp=a5d48078&shcp=fdd36af4&idc=my2"
],
"width": 0
},
"avatar_medium": {
"avg_color": "",
"height": 0,
"image_type": 0,
"is_animated": false,
"open_web_url": "",
"uri": "720x720/tos-maliva-avt-0068/0467a87bac511970395365c863688481",
"url_list": [
"https://p16-sign-va.tiktokcdn.com/tos-maliva-avt-0068/0467a87bac511970395365c863688481~tplv-tiktokx-cropcenter:720:720.webp?dr=14579&refresh_token=40e50c79&x-expires=1773975600&x-signature=mphVRed5OGl%2FKZ7w47C%2F4pBFPUo%3D&t=4d5b0474&ps=13740610&shp=a5d48078&shcp=fdd36af4&idc=my2",
"https://p16-sign-va.tiktokcdn.com/tos-maliva-avt-0068/0467a87bac511970395365c863688481~tplv-tiktokx-cropcenter:720:720.jpeg?dr=14579&refresh_token=a84e571f&x-expires=1773975600&x-signature=ryLh2MDbTKuFsiWpgnW9nTQkR5U%3D&t=4d5b0474&ps=13740610&shp=a5d48078&shcp=fdd36af4&idc=my2"
],
"width": 0
},
"avatar_thumb": {
"avg_color": "",
"height": 0,
"image_type": 0,
"is_animated": false,
"open_web_url": "",
"uri": "100x100/tos-maliva-avt-0068/0467a87bac511970395365c863688481",
"url_list": [
"https://p16-sign-va.tiktokcdn.com/tos-maliva-avt-0068/0467a87bac511970395365c863688481~tplv-tiktokx-cropcenter:100:100.webp?dr=14579&refresh_token=0cf75c75&x-expires=1773975600&x-signature=RHfGSUcP71lEVbhXI64PKlzyYu4%3D&t=4d5b0474&ps=13740610&shp=a5d48078&shcp=fdd36af4&idc=my2",
"https://p16-sign-va.tiktokcdn.com/tos-maliva-avt-0068/0467a87bac511970395365c863688481~tplv-tiktokx-cropcenter:100:100.jpeg?dr=14579&refresh_token=f3f36690&x-expires=1773975600&x-signature=K8JkJdSEGQX25Nxzh8iRuKrdyiw%3D&t=4d5b0474&ps=13740610&shp=a5d48078&shcp=fdd36af4&idc=my2"
],
"width": 0
},
"badge_image_list": [],
"badge_list": [
{
"OpenWebURL": "aweme://roma_redirect/?spark_page=user_level_main_page_privilege_panel",
"combine": {
"background": {
"background_color_code": "#B3475AFF",
"border_color_code": "",
"image": {
"avg_color": "",
"height": 0,
"image_type": 0,
"is_animated": false,
"open_web_url": "",
"uri": "",
"url_list": [],
"width": 0
},
"left_side_image": {
"avg_color": "",
"height": 0,
"image_type": 0,
"is_animated": false,
"open_web_url": "",
"uri": "",
"url_list": [],
"width": 0
}
},
"background_auto_mirrored": false,
"background_dark_mode": {
"background_color_code": "#B3475AFF",
"border_color_code": "",
"image": {
"avg_color": "",
"height": 0,
"image_type": 0,
"is_animated": false,
"open_web_url": "",
"uri": "",
"url_list": [],
"width": 0
},
"left_side_image": {
"avg_color": "",
"height": 0,
"image_type": 0,
"is_animated": false,
"open_web_url": "",
"uri": "",
"url_list": [],
"width": 0
}
},
"display_type": 4,
"font_style": {
"border_color": "",
"font_color": "",
"font_size": 0,
"font_width": 0
},
"icon": {
"avg_color": "",
"height": 0,
"image_type": 0,
"is_animated": false,
"open_web_url": "aweme://roma_redirect/?spark_page=user_level_main_page_privilege_panel",
"uri": "webcast-va/grade_badge_icon_lite_lv20_v1.png",
"url_list": [
"https://p16-webcast.tiktokcdn.com/webcast-va/grade_badge_icon_lite_lv20_v1.png~tplv-obj.image",
"https://p19-webcast.tiktokcdn.com/webcast-va/grade_badge_icon_lite_lv20_v1.png~tplv-obj.image"
],
"width": 0
},
"icon_auto_mirrored": false,
"multi_guest_show_style": 0,
"padding": {
"badge_width": 32,
"horizontal_padding_rule": 0,
"icon_bottom_padding": 0,
"icon_top_padding": 0,
"left_padding": 0,
"middle_padding": 0,
"right_padding": 0,
"use_specific": true,
"vertical_padding_rule": 0
},
"padding_new_font": {
"badge_width": 32,
"horizontal_padding_rule": 0,
"icon_bottom_padding": 0,
"icon_top_padding": 0,
"left_padding": 0,
"middle_padding": 0,
"right_padding": 0,
"use_specific": true,
"vertical_padding_rule": 0
},
"personal_card_show_style": 15,
"profile_card_panel": {
"badge_text_position": 0,
"profile_content": {
"icon_list": [],
"use_content": false
},
"projection_config": {
"icon": {
"avg_color": "",
"height": 0,
"image_type": 0,
"is_animated": false,
"open_web_url": "",
"uri": "",
"url_list": [],
"width": 0
},
"use_projection": false
},
"use_new_profile_card_style": false
},
"public_screen_show_style": 14,
"ranklist_online_audience_show_style": 0,
"str": "22"
},
"display": true,
"display_status": 0,
"display_type": 4,
"exhibition_type": 0,
"greyed_by_client": 0,
"is_customized": false,
"position": 1,
"priority_type": 20,
"privilege_log_extra": {
"data_version": "2",
"end_time": 0,
"level": "22",
"privilege_id": "7138381861675357988",
"privilege_order_id": "mock_fix_width_transparent_7138381861675357988",
"privilege_version": "0",
"start_time": 0
},
"scene_type": 8
}
],
"bg_img_url": "",
"bio_description": "",
"block_status": 0,
"border_list": [],
"comment_restrict": 0,
"commerce_webcast_config_ids": [],
"constellation": "",
"create_time": 0,
"deprecated1": 0,
"deprecated12": 0,
"deprecated13": 0,
"deprecated15": 0,
"deprecated16": false,
"deprecated17": false,
"deprecated18": "",
"deprecated19": false,
"deprecated2": 0,
"deprecated21": 0,
"deprecated28": false,
"deprecated29": "",
"deprecated3": 0,
"deprecated4": 0,
"deprecated5": "",
"deprecated6": 0,
"deprecated7": "",
"deprecated8": 0,
"disable_ichat": 0,
"display_id": "ivan.a.borbon",
"enable_ichat_img": 0,
"exp": 0,
"fan_ticket_count": 0,
"fold_stranger_chat": false,
"follow_info": {
"follow_status": 0,
"follower_count": 80,
"following_count": 224,
"push_status": 0
},
"follow_status": 0,
"ichat_restrict_type": 0,
"id": 6838241872218359000,
"id_str": "6838241872218358789",
"is_anchor_marked": false,
"is_block": false,
"is_follower": false,
"is_following": false,
"is_subscribe": false,
"link_mic_stats": 2,
"media_badge_image_list": [],
"mint_type_label": [
7160893592603462000
],
"modify_time": 1773769839,
"need_profile_guide": false,
"new_real_time_icons": [],
"nickname": "Shenrro",
"pay_grade": {
"deprecated20": 0,
"deprecated22": 0,
"deprecated23": 0,
"deprecated24": 0,
"deprecated25": 0,
"deprecated26": 0,
"grade_banner": "",
"grade_describe": "",
"grade_icon_list": [],
"level": 0,
"name": "",
"next_name": "",
"next_privileges": "",
"score": 0,
"screen_chat_type": 0,
"upgrade_need_consume": 0
},
"pay_score": 0,
"pay_scores": 0,
"push_comment_status": false,
"push_digg": false,
"push_follow": false,
"push_friend_action": false,
"push_ichat": false,
"push_status": false,
"push_video_post": false,
"push_video_recommend": false,
"real_time_icons": [],
"scm_label": "",
"sec_uid": "MS4wLjABAAAAA6-mF5-rk3cfvimJwN1t4AGPbXpsgMqF5Xi0NaoK937ZU7-W-qBEW9mx29qACZ70",
"secret": 1,
"share_qrcode_uri": "",
"special_id": "",
"status": 1,
"ticket_count": 0,
"top_fans": [],
"top_vip_no": 0,
"upcoming_event_list": [],
"user_attr": {
"admin_permissions": {},
"has_voting_function": false,
"is_admin": false,
"is_channel_admin": false,
"is_muted": false,
"is_super_admin": false,
"mute_duration": 0
},
"user_role": 0,
"verified": false,
"verified_content": "",
"verified_reason": "",
"with_car_management_permission": false,
"with_commerce_permission": false,
"with_fusion_shop_entry": false
}
},
{
"fan_ticket": 1107,
"user": {
"allow_find_by_contacts": false,
"allow_others_download_video": false,
"allow_others_download_when_sharing_video": false,
"allow_share_show_profile": false,
"allow_show_in_gossip": false,
"allow_show_my_action": false,
"allow_strange_comment": false,
"allow_unfollower_comment": false,
"allow_use_linkmic": false,
"avatar_large": {
"avg_color": "",
"height": 0,
"image_type": 0,
"is_animated": false,
"open_web_url": "",
"uri": "1080x1080/tos-maliva-avt-0068/c280efb15ed5032ccc498e6815b1906e",
"url_list": [
"https://p16-sign-va.tiktokcdn.com/tos-maliva-avt-0068/c280efb15ed5032ccc498e6815b1906e~tplv-tiktokx-cropcenter:1080:1080.webp?dr=14579&refresh_token=0f1c5e7c&x-expires=1773979200&x-signature=%2B2xuFvHOYKm3ExXq5jCT%2BIl8GzY%3D&t=4d5b0474&ps=13740610&shp=a5d48078&shcp=fdd36af4&idc=my3",
"https://p16-sign-va.tiktokcdn.com/tos-maliva-avt-0068/c280efb15ed5032ccc498e6815b1906e~tplv-tiktokx-cropcenter:1080:1080.jpeg?dr=14579&refresh_token=12734165&x-expires=1773979200&x-signature=jqV9CyQkIOnOcJoYcWhir8puNOg%3D&t=4d5b0474&ps=13740610&shp=a5d48078&shcp=fdd36af4&idc=my3"
],
"width": 0
},
"avatar_medium": {
"avg_color": "",
"height": 0,
"image_type": 0,
"is_animated": false,
"open_web_url": "",
"uri": "720x720/tos-maliva-avt-0068/c280efb15ed5032ccc498e6815b1906e",
"url_list": [
"https://p16-sign-va.tiktokcdn.com/tos-maliva-avt-0068/c280efb15ed5032ccc498e6815b1906e~tplv-tiktokx-cropcenter:720:720.webp?dr=14579&refresh_token=39ddc11d&x-expires=1773979200&x-signature=HVqVecS7AmYVesEk3h8wxM1w3sw%3D&t=4d5b0474&ps=13740610&shp=a5d48078&shcp=fdd36af4&idc=my3",
"https://p16-sign-va.tiktokcdn.com/tos-maliva-avt-0068/c280efb15ed5032ccc498e6815b1906e~tplv-tiktokx-cropcenter:720:720.jpeg?dr=14579&refresh_token=9c433d7c&x-expires=1773979200&x-signature=5lhVy%2F71A%2FkFRZhAT9NGvyXHtPE%3D&t=4d5b0474&ps=13740610&shp=a5d48078&shcp=fdd36af4&idc=my3"
],
"width": 0
},
"avatar_thumb": {
"avg_color": "",
"height": 0,
"image_type": 0,
"is_animated": false,
"open_web_url": "",
"uri": "100x100/tos-maliva-avt-0068/c280efb15ed5032ccc498e6815b1906e",
"url_list": [
"https://p16-sign-va.tiktokcdn.com/tos-maliva-avt-0068/c280efb15ed5032ccc498e6815b1906e~tplv-tiktokx-cropcenter:100:100.webp?dr=14579&refresh_token=192ba954&x-expires=1773979200&x-signature=JTi9HAa%2B8N5IwE6jyVnBGA3bupU%3D&t=4d5b0474&ps=13740610&shp=a5d48078&shcp=fdd36af4&idc=my3",
"https://p16-sign-va.tiktokcdn.com/tos-maliva-avt-0068/c280efb15ed5032ccc498e6815b1906e~tplv-tiktokx-cropcenter:100:100.jpeg?dr=14579&refresh_token=488b4da9&x-expires=1773979200&x-signature=URvXbsCrc5gTeGu2m3n%2F3aQiDgI%3D&t=4d5b0474&ps=13740610&shp=a5d48078&shcp=fdd36af4&idc=my3"
],
"width": 0
},
"badge_image_list": [],
"badge_list": [],
"bg_img_url": "",
"bio_description": "👩🏽🦱💕",
"block_status": 0,
"border_list": [],
"comment_restrict": 0,
"commerce_webcast_config_ids": [],
"constellation": "",
"create_time": 0,
"deprecated1": 0,
"deprecated12": 0,
"deprecated13": 0,
"deprecated15": 0,
"deprecated16": false,
"deprecated17": false,
"deprecated18": "",
"deprecated19": false,
"deprecated2": 0,
"deprecated21": 0,
"deprecated28": false,
"deprecated29": "",
"deprecated3": 0,
"deprecated4": 0,
"deprecated5": "",
"deprecated6": 0,
"deprecated7": "",
"deprecated8": 0,
"disable_ichat": 0,
"display_id": "rxxnal",
"enable_ichat_img": 0,
"exp": 0,
"fan_ticket_count": 0,
"fold_stranger_chat": false,
"follow_info": {
"follow_status": 0,
"follower_count": 41,
"following_count": 161,
"push_status": 0
},
"follow_status": 0,
"ichat_restrict_type": 0,
"id": 7471332853295302000,
"id_str": "7471332853295301678",
"is_anchor_marked": false,
"is_block": false,
"is_follower": false,
"is_following": false,
"is_subscribe": false,
"link_mic_stats": 2,
"media_badge_image_list": [],
"mint_type_label": [],
"modify_time": 1773760849,
"need_profile_guide": false,
"new_real_time_icons": [],
"nickname": "rxxnal",
"pay_grade": {
"deprecated20": 0,
"deprecated22": 0,
"deprecated23": 0,
"deprecated24": 0,
"deprecated25": 0,
"deprecated26": 0,
"grade_banner": "",
"grade_describe": "",
"grade_icon_list": [],
"level": 0,
"name": "",
"next_name": "",
"next_privileges": "",
"score": 0,
"screen_chat_type": 0,
"upgrade_need_consume": 0
},
"pay_score": 0,
"pay_scores": 0,
"push_comment_status": false,
"push_digg": false,
"push_follow": false,
"push_friend_action": false,
"push_ichat": false,
"push_status": false,
"push_video_post": false,
"push_video_recommend": false,
"real_time_icons": [],
"scm_label": "",
"sec_uid": "MS4wLjABAAAAq3fHx1yjd1uHT_8hNsbACsmMsPvfbIZlzmWknh35Z4U1e98aepk-j_H_-orjJoV4",
"secret": 0,
"share_qrcode_uri": "",
"special_id": "",
"status": 1,
"ticket_count": 0,
"top_fans": [],
"top_vip_no": 0,
"upcoming_event_list": [],
"user_attr": {
"admin_permissions": {},
"has_voting_function": false,
"is_admin": false,
"is_channel_admin": false,
"is_muted": false,
"is_super_admin": false,
"mute_duration": 0
},
"user_role": 0,
"verified": false,
"verified_content": "",
"verified_reason": "",
"with_car_management_permission": false,
"with_commerce_permission": false,
"with_fusion_shop_entry": false
}
}
],
"use_filter": false,
"user_count": 1925,
"user_share_text": "",
"video_feed_tag": "",
"visible_scope_type": 0,
"watch_day_cnt_layer": 0,
"watch_early_quota_config": {},
"webcast_comment_tcs": 0,
"webcast_sdk_version": 0,
"with_draw_something": false,
"with_ktv": false,
"with_linkmic": true
},
"status_code": 0
}{
"message": "Bad request"
}{
"message": "Invalid API key. Go to https://docs.rapidapi.com/docs/keys for more info."
}{
"message": "You are not subscribed to this API."
}{
"message": "Request failed with status 500: Internal Server Error",
"status_code": 500
}Authorizations
Rapid API Key. How can I get Rapid API Key?
Query Parameters
Room ID. You can get the roomId from the uniqueId via the api/live/check-alive endpoint (room_id_str)
Pattern:
^\d+$Example:
"7618370406579243792"
Response
Success
Example:
{ "AnchorABMap": {}, "adjust_display_order": 0, "admin_ec_show_permission": {}, "admin_user_ids": [], "age_restricted": { "AgeInterval": 0, "restricted": false, "source": 0 }, "aigc_self_disclosure_switch": false, "all_emoji_list": [], "allow_preview_time": -1, "anchor_scheduled_time_text": "", "anchor_share_text": "", "anchor_tab_type": 7, "answering_question_content": "", "app_id": 8311, "audio_mute": 0, "auto_cover": 0, "biz_sticker_list": [], "book_end_time": 0, "book_time": 0, "business_live": 0, "challenge_info": "", "client_version": 11909, "comment_has_text_emoji_emote": 0, "comment_name_mode": 0, "commerce_info": { "commerce_permission": 0, "oec_live_enter_room_init_data": "", "product_num": 0, "use_async_load": false, "use_new_promotion": 0 }, "common_label_list": "", "content_tag": "", "continuous_room_quota_config": {}, "cover": { "avg_color": "#BCD9E0", "height": 0, "image_type": 0, "is_animated": false, "open_web_url": "", "uri": "webcast-va/7197507146179955462", "url_list": [ "https://p16-webcast.tiktokcdn.com/webcast-va/7197507146179955462~tplv-obj.image", "https://p19-webcast.tiktokcdn.com/webcast-va/7197507146179955462~tplv-obj.image" ], "width": 0 }, "cover_type": 2, "cpp_version": 0, "create_time": 1773790105, "deco_list": [], "deprecated10": "", "deprecated11": "", "deprecated12": "", "deprecated13": "", "deprecated14": 0, "deprecated15": 0, "deprecated16": 0, "deprecated17": [], "deprecated18": 0, "deprecated19": "", "deprecated195": false, "deprecated2": "", "deprecated20": 0, "deprecated21": false, "deprecated22": 0, "deprecated23": "", "deprecated24": 0, "deprecated26": "", "deprecated28": "", "deprecated3": {}, "deprecated30": "", "deprecated31": false, "deprecated32": "", "deprecated35": 0, "deprecated36": 0, "deprecated39": "", "deprecated4": 0, "deprecated41": 0, "deprecated43": false, "deprecated44": 0, "deprecated5": false, "deprecated6": "", "deprecated7": 0, "deprecated8": "", "deprecated9": "", "detect_anchor_leave": 0, "disable_preload_stream": false, "disable_preview_sub_only": 0, "disable_screen_record": false, "drawer_tab_position": "", "drop_comment_group": 0, "ec_age_interval": 0, "ecom_room_type": 0, "ecommerce_room_tags": [], "effect_frame_upload_demotion": 0, "effect_info": [], "emoji_list": [], "enable_optimize_sensitive_word": false, "enable_server_drop": 0, "enable_stream_encryption": false, "enlarge_view_info": { "ab_result": false, "enabler_enlarge_view": false, "in_enlarge_blacklist": false, "landscape_view": 0, "portrait_view": 0 }, "existed_commerce_goods": false, "existed_ttls_goods": false, "fansclub_msg_style": 2, "feed_room_label": { "avg_color": "#BCBCE0", "height": 0, "image_type": 0, "is_animated": false, "open_web_url": "", "uri": "webcast-sg/2ea90002aca1159b5c67", "url_list": [ "https://p16-webcast.tiktokcdn.com/img/alisg/webcast-sg/2ea90002aca1159b5c67~tplv-obj.image", "https://p19-webcast.tiktokcdn.com/img/alisg/webcast-sg/2ea90002aca1159b5c67~tplv-obj.image" ], "width": 0 }, "feed_room_labels": [], "filter_msg_rules": [], "finish_reason": 0, "finish_time": 1773806468, "finish_url": "", "finish_url_v2": "", "follow_msg_style": 2, "forbidden_copy": false, "forum_extra_data": "", "fyp_skylight_avatar_refresh": 0, "game_demo": 0, "game_tag": [ { "bundle_id": "", "full_name": "", "game_category": [], "gar": [], "hashtag_id": [5], "hashtag_list": [], "id": 102, "is_new_game": false, "landscape": 0, "package_name": "", "short_name": "", "show_name": "Garena Free Fire" } ], "gift_msg_style": 2, "gift_poll_vote_enabled": false, "group_source": 0, "gs_guessing_xtab_ab_param": 0, "has_commerce_goods": false, "has_more_history_comment": false, "has_ttls_goods": false, "has_ttls_live_permission": false, "has_used_music": false, "has_viewer_wishes_game_tricks": false, "hashtag": { "id": 5, "image": { "avg_color": "#DCF4FA", "height": 0, "image_type": 0, "is_animated": false, "open_web_url": "", "uri": "webcast-sg/5Gaming.png", "url_list": [ "https://p16-webcast.tiktokcdn.com/img/alisg/webcast-sg/5Gaming.png~tplv-obj.image", "https://p19-webcast.tiktokcdn.com/img/alisg/webcast-sg/5Gaming.png~tplv-obj.image" ], "width": 0 }, "namespace": 0, "title": "Gaming" }, "have_wishlist": false, "history_comment_cursor": "", "history_comment_list": [], "host_board_status": 0, "hot_sentence_info": "", "id": 7618370406579244000, "id_str": "7618370406579243792", "idc_region": "", "indicators": [], "intended_drm": "", "interaction_question_version": 1, "interception": false, "introduction": "", "is_game": 0, "is_gated_room": false, "is_replay": false, "is_reposted_expect": 0, "is_show_user_card_switch": false, "is_stream_low_latency": false, "is_tag2_sfv_relation_pair": false, "last_ping_time": 1773806468, "layout": 0, "like_agg_optimize_group": 0, "like_count": 0, "link_mic": { "ab_infos": {}, "audience_id_list": [], "battle_scores": [], "battle_settings": { "battle_id": 0, "battle_status": 0, "channel_id": 0, "duration": 0, "finished": 0, "match_type": 0, "start_time": 0, "start_time_ms": 0, "theme": "" }, "channel_id": 0, "channel_info": { "dimension": 0, "group_channel_id": 0, "inner_channel_id": 0, "layout": 0, "vendor": 0 }, "followed_count": 0, "link_mic_channel": 0, "linked_user_list": [], "linker_mode": 0, "linkmic_unify_channel_id": 0, "multi_guest_enable": false, "multi_live_enum": 1, "rival_anchor_id": 0, "show_user_list": [] }, "linker_map": {}, "linkmic_layout": 0, "lite_user_not_visible": false, "lite_user_visible": false, "live_distribution": [], "live_id": 12, "live_reason": "", "live_room_mode": 6, "live_sub_only": 0, "live_sub_only_month": 0, "live_sub_only_tier": 0, "live_sub_only_use_music": 0, "live_type_audio": false, "live_type_linkmic": false, "live_type_normal": false, "live_type_sandbox": false, "live_type_screenshot": false, "live_type_social_live": false, "live_type_third_party": true, "living_room_attrs": { "admin_flag": 0, "rank": 0, "room_id": 7618370406579244000, "room_id_str": "7618370406579243792", "silence_flag": 0 }, "log_id": "2026031812011014795160E4D0EB490726", "lottery_finish_time": 0, "max_continue_watch_mill_seconds": 0, "max_preview_time": 60000, "mosaic_status": 0, "multi_stream_id": 0, "multi_stream_id_str": "", "multi_stream_net_mode": 0, "multi_stream_scene": 0, "multi_stream_source": 0, "multi_stream_url": { "alive_timestamp": 0, "candidate_resolution": [], "complete_push_urls": [], "default_resolution": "", "drm_type": 0, "extra": { "anchor_interact_profile": 0, "audience_interact_profile": 0, "bframe_enable": false, "bitrate_adapt_strategy": 0, "bytevc1_enable": false, "default_bitrate": 0, "deprecated1": false, "fps": 0, "gop_sec": 0, "hardware_encode": false, "height": 0, "max_bitrate": 0, "min_bitrate": 0, "roi": false, "super_resolution": { "antialiasing": false, "enable": false, "strength": 0 }, "sw_roi": false, "video_profile": 0, "width": 0 }, "flv_pull_url": {}, "flv_pull_url_params": {}, "hls_pull_url": "", "hls_pull_url_map": {}, "hls_pull_url_params": "", "id": 0, "id_str": "", "live_core_sdk_data": { "pull_data": { "options": { "default_preview_quality": { "icon_type": 0, "level": 0, "name": "", "resolution": "", "sdk_key": "", "v_codec": "" }, "default_quality": { "icon_type": 0, "level": 0, "name": "", "resolution": "", "sdk_key": "", "v_codec": "" }, "qualities": [], "show_quality_button": false, "support_low_latency": false }, "stream_data": "" }, "push_data": { "push_stream_level": 0, "resolution_params": {}, "stream_data": "" } }, "provider": 0, "push_resolution": "", "push_urls": [], "resolution_name": {}, "rtmp_pull_url": "", "rtmp_pull_url_params": "", "rtmp_push_url": "", "rtmp_push_url_params": "", "stream_app_id": 0, "stream_control_type": 0, "stream_delay_ms": 0, "stream_size_height": 0, "stream_size_width": 0, "vr_type": 0 }, "net_mode": 0, "os_type": 0, "owner": { "allow_find_by_contacts": false, "allow_others_download_video": false, "allow_others_download_when_sharing_video": false, "allow_share_show_profile": false, "allow_show_in_gossip": false, "allow_show_my_action": false, "allow_strange_comment": false, "allow_unfollower_comment": false, "allow_use_linkmic": false, "avatar_large": { "avg_color": "", "height": 0, "image_type": 0, "is_animated": false, "open_web_url": "", "uri": "1080x1080/tos-alisg-avt-0068/c9a5785324b649b280c79e66f943284d", "url_list": [ "https://p16-sign-sg.tiktokcdn.com/tos-alisg-avt-0068/c9a5785324b649b280c79e66f943284d~tplv-tiktokx-cropcenter:1080:1080.webp?dr=14579&refresh_token=565c5068&x-expires=1773979200&x-signature=4rPFw5Emdir3ILhgtkG8sQ8OfiA%3D&t=4d5b0474&ps=13740610&shp=a5d48078&shcp=fdd36af4&idc=my2", "https://p16-sign-sg.tiktokcdn.com/tos-alisg-avt-0068/c9a5785324b649b280c79e66f943284d~tplv-tiktokx-cropcenter:1080:1080.jpeg?dr=14579&refresh_token=d2d51c80&x-expires=1773979200&x-signature=%2FQbjka3q7p135ux6jv9I2257Cpc%3D&t=4d5b0474&ps=13740610&shp=a5d48078&shcp=fdd36af4&idc=my2" ], "width": 0 }, "avatar_medium": { "avg_color": "", "height": 0, "image_type": 0, "is_animated": false, "open_web_url": "", "uri": "720x720/tos-alisg-avt-0068/c9a5785324b649b280c79e66f943284d", "url_list": [ "https://p16-sign-sg.tiktokcdn.com/tos-alisg-avt-0068/c9a5785324b649b280c79e66f943284d~tplv-tiktokx-cropcenter:720:720.webp?dr=14579&refresh_token=5c0fc299&x-expires=1773979200&x-signature=%2BzI%2Ft4cpsgJwhJ%2F2dE%2Fm5a%2BoG%2Fo%3D&t=4d5b0474&ps=13740610&shp=a5d48078&shcp=fdd36af4&idc=my2", "https://p16-sign-sg.tiktokcdn.com/tos-alisg-avt-0068/c9a5785324b649b280c79e66f943284d~tplv-tiktokx-cropcenter:720:720.jpeg?dr=14579&refresh_token=8e896b7c&x-expires=1773979200&x-signature=6qmH8YO8yXOOSEqS8%2FF%2B22YVIuM%3D&t=4d5b0474&ps=13740610&shp=a5d48078&shcp=fdd36af4&idc=my2" ], "width": 0 }, "avatar_thumb": { "avg_color": "", "height": 0, "image_type": 0, "is_animated": false, "open_web_url": "", "uri": "100x100/tos-alisg-avt-0068/c9a5785324b649b280c79e66f943284d", "url_list": [ "https://p16-sign-sg.tiktokcdn.com/tos-alisg-avt-0068/c9a5785324b649b280c79e66f943284d~tplv-tiktokx-cropcenter:100:100.webp?dr=14579&refresh_token=9a0995be&x-expires=1773975600&x-signature=Mv7i71RF8SnpQ2jy8NMZxrbm0zQ%3D&t=4d5b0474&ps=13740610&shp=a5d48078&shcp=3ea1580e&idc=my2", "https://p16-sign-sg.tiktokcdn.com/tos-alisg-avt-0068/c9a5785324b649b280c79e66f943284d~tplv-tiktokx-cropcenter:100:100.jpeg?dr=14579&refresh_token=673157ab&x-expires=1773975600&x-signature=7UMrQX%2FJahwgvAllnRowQqbubwg%3D&t=4d5b0474&ps=13740610&shp=a5d48078&shcp=3ea1580e&idc=my2" ], "width": 0 }, "badge_image_list": [], "badge_list": [], "bg_img_url": "", "bio_description": "Galería: CRIS 🦁🌹🤠🩷BLOODFIRE✈️ITPMendoza🐋CASTRO🌌F7Ramos🦢CHAPIN😘", "block_status": 0, "border_list": [], "comment_restrict": 0, "commerce_webcast_config_ids": [], "constellation": "", "create_time": 0, "deprecated1": 0, "deprecated12": 0, "deprecated13": 0, "deprecated15": 0, "deprecated16": false, "deprecated17": false, "deprecated18": "", "deprecated19": false, "deprecated2": 0, "deprecated21": 0, "deprecated28": false, "deprecated29": "", "deprecated3": 0, "deprecated4": 0, "deprecated5": "", "deprecated6": 0, "deprecated7": "", "deprecated8": 0, "disable_ichat": 0, "display_id": "eltomboff", "enable_ichat_img": 0, "exp": 0, "fan_ticket_count": 0, "fans_club_info": { "badge": { "avg_color": "", "height": 0, "image_type": 35, "is_animated": false, "open_web_url": "", "uri": "webcast-va/fans_left_up_corner_entrance_icon_lv1_v0.png", "url_list": [ "https://p16-webcast.tiktokcdn.com/webcast-va/fans_left_up_corner_entrance_icon_lv1_v0.png~tplv-obj.image", "https://p19-webcast.tiktokcdn.com/webcast-va/fans_left_up_corner_entrance_icon_lv1_v0.png~tplv-obj.image" ], "width": 0 }, "fans_club_name": "", "fans_count": 0, "fans_level": 0, "fans_score": 0, "is_sleeping": false }, "fold_stranger_chat": false, "follow_info": { "follow_status": 0, "follower_count": 520275, "following_count": 58, "push_status": 0 }, "follow_status": 0, "ichat_restrict_type": 0, "id": 6788752804346496000, "id_str": "6788752804346496006", "is_anchor_marked": false, "is_block": false, "is_follower": false, "is_following": false, "is_subscribe": false, "link_mic_stats": 2, "media_badge_image_list": [], "mint_type_label": [7160893592603462000], "modify_time": 1773804171, "need_profile_guide": false, "new_real_time_icons": [], "nickname": "EL TOMBO FF 👮🏼♂️", "own_room": { "room_ids": [7618370406579244000], "room_ids_str": ["7618370406579243792"] }, "pay_grade": { "deprecated20": 0, "deprecated22": 0, "deprecated23": 0, "deprecated24": 0, "deprecated25": 0, "deprecated26": 0, "grade_banner": "", "grade_describe": "", "grade_icon_list": [], "level": 0, "name": "", "next_name": "", "next_privileges": "", "score": 0, "screen_chat_type": 0, "upgrade_need_consume": 0 }, "pay_score": 0, "pay_scores": 0, "push_comment_status": false, "push_digg": false, "push_follow": false, "push_friend_action": false, "push_ichat": false, "push_status": false, "push_video_post": false, "push_video_recommend": false, "real_time_icons": [], "scm_label": "", "sec_uid": "MS4wLjABAAAA3jFDUnObfQ46dsWci1xMiTGzkkUFvww0YLThyqVL3XWTvw6RhDBT8Bk8AsXagwMT", "secret": 0, "share_qrcode_uri": "", "special_id": "", "status": 1, "subscribe_info": { "anchor_gift_sub_auth": false, "badge": { "is_customized": false }, "enable_subscription": false, "is_in_grace_period": false, "is_sol_eligible": false, "is_subscribe": false, "is_subscribed_to_anchor": false, "package_id": "", "qualification": true, "sol_room_display_text": "", "status": 0, "sub_end_time": 0, "sub_split_status": { "cur_period": 3, "is_old_sub_creator": true }, "subscriber_count": 0, "timer_detail": { "anchor_id": 0, "anchor_side_title": "", "antidirt_status": 0, "audit_status": 0, "last_pause_timestamp_s": 0, "remaining_time_s": 0, "screen_h": 0, "screen_w": 0, "start_countdown_time_s": 0, "start_timestamp_s": 0, "sticker_x": 0, "sticker_y": 0, "sub_count": 0, "time_increase_cap_s": 0, "time_increase_per_sub_s": 0, "time_increase_reach_cap": false, "timer_id": 0, "timer_status": 0, "timestamp_s": 0, "total_pause_time_s": 0, "total_time_s": 0, "user_side_title": "" }, "user_gift_sub_auth": false }, "ticket_count": 0, "top_fans": [], "top_vip_no": 0, "upcoming_event_list": [], "user_attr": { "admin_permissions": {}, "has_voting_function": false, "is_admin": false, "is_channel_admin": false, "is_muted": false, "is_super_admin": false, "mute_duration": 0 }, "user_role": 0, "verified": false, "verified_content": "", "verified_reason": "", "with_car_management_permission": false, "with_commerce_permission": false, "with_fusion_shop_entry": false }, "owner_device_id": 0, "owner_device_id_str": "", "owner_user_id": 6788752804346496000, "owner_user_id_str": "6788752804346496006", "paid_event": { "event_id": 0, "paid_type": 0 }, "partnership_info": { "game_info_list": [], "partnership_room": false, "promoting_drops_id": "", "promoting_game_id": "", "promoting_room": false, "promoting_task_id": "", "promoting_task_type": 0, "show_task_id": "", "show_task_type": 0, "task_id_list": [] }, "pico_live_type": 0, "polling_star_comment": false, "pre_enter_time": 0, "preview_flow_tag": 0, "quota_config": {}, "rank_comment_groups": [], "ranklist_audience_type": 0, "regional_restricted": { "block_list": [] }, "relation_tag": "", "replay": true, "repost_note": "", "reposted": false, "room_audit_status": 0, "room_auth": { "Banner": 1, "BroadcastMessage": 0, "Chat": true, "ChatL2": false, "ChatSubOnly": false, "CommentMention": 0, "CommercePermission": 0, "CommunityFlagged": false, "CommunityFlaggedReview": false, "CustomizableGiftPoll": 0, "CustomizablePoll": 0, "Danmaku": false, "Digg": true, "DonationSticker": 2, "EmotePoll": 0, "EnableFansLevel": false, "EnableShowUserUV": false, "EnigmaWhisper": 0, "EventPromotion": 0, "Explore": false, "GameRankingSwitch": 0, "Gift": true, "GiftAnchorMt": 1, "GiftPoll": 0, "GoldenEnvelope": 0, "GoldenEnvelopeActivity": 0, "InteractionQuestion": true, "Landscape": 2, "LandscapeChat": 0, "LuckMoney": true, "MultiEnableReserve": false, "Pictionary": 0, "PictionaryBubble": 0, "PictionaryPermission": 0, "Poll": 0, "Promote": false, "PromoteOther": 0, "Props": false, "PublicScreen": 1, "QuickChat": 0, "Rank": 0, "RankingChangeAlterSwitch": 0, "RoomContributor": false, "SecretRoom": 0, "Share": true, "ShareEffect": 0, "ShoppingRanking": 0, "SpamComments": false, "UserCard": true, "UserCount": 1, "ViewerWishes": 0, "Viewers": false, "anchor_level_permission": { "InteractionQuestion": 0, "beauty": 0, "comment_filter": 0, "comment_setting": 0, "customizable_poll": 0, "donation_sticker": 0, "effects": 0, "flip": 0, "full_screen_mode": 0, "goody_bag": 0, "hear_your_own_voice": 0, "karaoke": 0, "live_background": 0, "live_center": 0, "live_intro": 0, "mirror": 0, "moderator_setting": 0, "pause_live": 0, "pictionary": 0, "pin": 0, "play_together": 0, "poll": 0, "portal": 0, "promote": 0, "share": 0, "sticker": 0, "topic": 0, "treasure_box": 0, "viewer_rank_list": 0, "voice_effect": 0 }, "comment_tray_status": 0, "credit_entrance_for_audience": false, "deprecated1": false, "deprecated118": [], "deprecated119": 0, "deprecated2": 0, "deprecated3": 0, "deprecated4": 0, "deprecated5": 0, "deprecated6": 0, "deprecated7": 0, "deprecated8": 0, "deprecated9": 0, "game_guess_permission": false, "guess_entrance_for_host": false, "show_credit_widget": false, "transaction_history": 1, "use_user_pv": false }, "room_auth_message": {}, "room_create_ab_param": "{\"ai_live_summary\":0,\"auto_post_living\":0,\"autocut_opt_strategy_revert\":false,\"check_ping_no_streaming_short_close\":0,\"compensation_push\":0,\"count_strategy\":0,\"create_room_continue_optimize\":0,\"enable_revenue_tips_moderator_comment\":1,\"fans_privilege_upgrade\":1,\"game_multi_guess_creator\":1,\"game_use_new_virtual_app_id\":2,\"gb_obs_use_virtual_app_id\":0,\"gift_poll_optimize\":1,\"go_live_with_vip_stream\":0,\"heartme_gift_text_enabled\":true,\"host_lop_realtime_settle\":0,\"linkmic_ab_params\":{\"enable_effect_layout_animation\":true,\"enable_game_linkmic_charm\":true,\"linkmic_anchor_co_host_multi_guest_reservation\":1,\"linkmic_floating_layout_opt_style_v2\":2,\"live_linkmic_enable_state_consistency\":3,\"multi_guest_skip_tip_for_enlarge_another\":true},\"lite_user_not_visible\":false,\"live_cohost_cross_room_push_arch_enable\":true,\"live_cohost_timeout_strategy_group\":0,\"live_replay_highlight_recover\":false,\"live_replay_highlight_refactor\":0,\"live_share_post\":false,\"ls_auto_post\":0,\"moderator_tips_v2\":1,\"new_platform_badges\":false,\"obs_use_new_virtual_app_id\":0,\"pictionary_bubble\":0,\"pictionary_permission\":0,\"poll_template_optimize_group\":2,\"push_concurrency\":0,\"room_has_pin\":true,\"room_pin_duration\":60,\"sea_obs_use_virtual_app_id\":0,\"show_subscription_barrage_message\":false,\"show_subscription_enter_message\":false,\"sub_only_live_moderator\":false,\"update_room_status_optimize\":0,\"use_hybrid_golive_net\":0,\"use_new_anchor_net_control\":true,\"wave_optimize_strategy\":2}", "room_layout": 0, "room_llm_title": "", "room_pcu": 0, "room_sticker_list": [], "room_tabs": [], "room_tag": 0, "rtc_app_id": "", "scroll_config": "", "search_id": 0, "secret_room_access": false, "share_msg_style": 2, "share_url": "https://m.tiktok.com/share/live/7618370406579243792/?language=en&u_code=f0ja7h22380b90", "short_title": "", "short_touch_items": [], "show_emoji_list": false, "show_star_comment_entrance": false, "show_watch_live_cta": false, "social_interaction": { "linkmic_scene_linker": {}, "multi_live": { "ai_summary": "", "audience_send_gifts_to_all_enum": 0, "audience_shared_invitee_panel_type": 0, "background_sticker_id": "", "extra_info": {}, "hangout_card_tag_list": [], "host_gifter_linkmic_enum": 0, "host_multi_guest_dev_mode": 0, "host_send_gifts_to_all_enum": 0, "is_eligible_for_apply_auto_approve": false, "linkmic_service_version": 0, "top_live_guide": "", "top_live_title": "", "trigger_guide_time": 0, "try_open_multi_guest_when_create_room": false, "user_settings": { "applier_sort_gift_score_threshold": 0, "applier_sort_setting": 0, "multi_guest_allow_request_from_followers": 0, "multi_guest_allow_request_from_friends": 0, "multi_guest_allow_request_from_others": 0, "multi_guest_apply_auto_approve": 0, "multi_guest_disable_video_linkmic": 0, "multi_guest_reset_point_after_leave": 0, "multi_live_apply_permission": 1 }, "viewer_gifter_linkmic_enum": 0 } }, "square_cover_img": { "avg_color": "#666666", "height": 0, "image_type": 0, "is_animated": false, "open_web_url": "", "uri": "webcast-sg/0e36ad4b0ee9daf1a4fb22baebf0df72", "url_list": [ "https://p16-webcast.tiktokcdn.com/webcast-sg/0e36ad4b0ee9daf1a4fb22baebf0df72~tplv-obj.image", "https://p19-webcast.tiktokcdn.com/webcast-sg/0e36ad4b0ee9daf1a4fb22baebf0df72~tplv-obj.image" ], "width": 0 }, "start_time": 0, "stats": { "comment_count": 0, "deprecated1": 0, "deprecated2": "", "digg_count": 0, "enter_count": 191992, "fan_ticket": 0, "follow_count": 689, "gift_uv_count": 0, "id": 7618370406579244000, "id_str": "7618370406579243792", "like_count": 0, "replay_fan_ticket": 0, "replay_viewers": 107976, "room_follow_count": 0, "share_count": 0, "total_user": 191992, "total_user_desp": "", "user_count_composition": { "deprecated1": 0, "my_follow": 0, "other": 0, "video_detail": 0 }, "watch_user_count": 0, "watermelon": 0 }, "status": 2, "sticker_list": [], "stream_id": 1848419295776211000, "stream_id_str": "1848419295776211036", "stream_status": 0, "stream_url": { "alive_timestamp": 0, "candidate_resolution": ["SD1", "SD2", "HD1"], "complete_push_urls": [], "default_resolution": "SD2", "drm_type": 0, "extra": { "anchor_client_info": { "custom_info": "" }, "anchor_interact_profile": 0, "audience_interact_profile": 0, "bframe_enable": false, "bitrate_adapt_strategy": 0, "bytevc1_enable": false, "default_bitrate": 0, "deprecated1": false, "fps": 0, "gop_sec": 0, "hardware_encode": false, "height": 0, "max_bitrate": 0, "min_bitrate": 0, "roi": false, "sw_roi": false, "video_profile": 0, "width": 0 }, "flv_pull_url": { "HD1": "https://pull-flv-l1-sg01.tiktokcdn.com/game/stream-1848419295776211036_hd.flv?expire=1775016070&sign=1080e4ca548bd5f82ef571cc85903bc1", "SD1": "https://pull-flv-l1-sg01.tiktokcdn.com/game/stream-1848419295776211036_ld.flv?expire=1775016070&sign=45db48801206d7678e31a57f99e25e0e", "SD2": "https://pull-flv-l1-sg01.tiktokcdn.com/game/stream-1848419295776211036_sd.flv?expire=1775016070&sign=1f972a9f3ffee9e3e11fc53bc8901573" }, "flv_pull_url_params": { "HD1": "{\"v_rtbitrate\":1761760,\"v_rtbitrate_std\":62560,\"v_rtpsnr\":0,\"v_rtbitrate_pct\":1853390,\"stream_suffix\":\"hd\",\"vbitrate\":1800000,\"resolution\":\"720x1280\",\"gop\":4,\"v_rtbitrate_vpaas_timestamp\":1773806470278,\"VCodec\":\"h264\",\"Auto\":{\"Enable\":1,\"Demotion\":{\"StallCount\":4}},\"v_rtbitrate_timestamp\":1773806467018,\"cdn_name\":\"ws\"}", "SD1": "{\"v_rtbitrate_vpaas_timestamp\":1773806470278,\"v_rtbitrate_timestamp\":1773806459089,\"gop\":4,\"v_rtbitrate\":531520,\"cdn_name\":\"ws\",\"stream_suffix\":\"ld\",\"vbitrate\":600000,\"v_rtpsnr\":0,\"Auto\":{\"Demotion\":{\"StallCount\":4},\"Enable\":1},\"VCodec\":\"h264\",\"v_rtbitrate_pct\":569430,\"v_rtbitrate_std\":23930,\"resolution\":\"360x640\"}", "SD2": "{\"Auto\":{\"Demotion\":{\"StallCount\":4},\"Enable\":1},\"VCodec\":\"h264\",\"v_rtbitrate_timestamp\":1773793805044,\"gop\":4,\"v_rtbitrate_pct\":1227160,\"cdn_name\":\"ws\",\"resolution\":\"540x960\",\"stream_suffix\":\"sd\",\"v_rtbitrate\":1184740,\"v_rtpsnr\":0,\"v_rtbitrate_std\":137180,\"vbitrate\":1200000,\"v_rtbitrate_vpaas_timestamp\":1773806470278}" }, "hls_pull_url": "https://pull-hls-l1-sg01.tiktokcdn.com/game/stream-1848419295776211036/playlist.m3u8?expire=1775016070&session_id=148-2026031812011014795160E4D0EB490726&sign=6c52550fdc11d0e2afd49c3a50c66e4f", "hls_pull_url_map": {}, "hls_pull_url_params": "{\"resolution\":\"1080x1920\",\"gop\":4,\"cdn_name\":\"ws\",\"VCodec\":\"h264\",\"Auto\":{\"Demotion\":{\"StallCount\":4},\"Enable\":1},\"vbitrate\":8400000}", "id": 1848419295776211000, "id_str": "1848419295776211036", "live_core_sdk_data": { "pull_data": { "options": { "default_preview_quality": { "icon_type": 0, "level": 0, "name": "", "resolution": "", "sdk_key": "", "v_codec": "" }, "default_quality": { "icon_type": 0, "level": 0, "name": "540p", "resolution": "", "sdk_key": "sd", "v_codec": "" }, "qualities": [ { "icon_type": 6, "level": 10, "name": "Original", "resolution": "", "sdk_key": "origin", "v_codec": "" }, { "icon_type": 4, "level": 6, "name": "1080p60", "resolution": "", "sdk_key": "uhd_60", "v_codec": "" }, { "icon_type": 3, "level": 4, "name": "720p60", "resolution": "", "sdk_key": "hd_60", "v_codec": "" }, { "icon_type": 3, "level": 3, "name": "720p", "resolution": "", "sdk_key": "hd", "v_codec": "" }, { "icon_type": 2, "level": 2, "name": "540p", "resolution": "", "sdk_key": "sd", "v_codec": "" }, { "icon_type": 1, "level": 1, "name": "360p", "resolution": "", "sdk_key": "ld", "v_codec": "" } ], "show_quality_button": false, "support_low_latency": false }, "stream_data": "{\"common\":{\"session_id\":\"148-2026031812011014795160E4D0EB490726\",\"rule_ids\":\"{\\\"ab_version_trace\\\":null,\\\"sched\\\":\\\"{\\\\\\\"result\\\\\\\":{\\\\\\\"hit\\\\\\\":\\\\\\\"default\\\\\\\",\\\\\\\"cdn\\\\\\\":192}}\\\"}\",\"user_count\":28,\"peer_anchor_level\":38},\"data\":{\"origin\":{\"main\":{\"flv\":\"https://pull-flv-l1-sg01.tiktokcdn.com/game/stream-1848419295776211036.flv?expire=1775016070&sign=09f8f551ed25dd2492c1f36c21a99f5d\",\"hls\":\"https://pull-hls-l1-sg01.tiktokcdn.com/game/stream-1848419295776211036/playlist.m3u8?expire=1775016070&sign=6c52550fdc11d0e2afd49c3a50c66e4f\",\"cmaf\":\"\",\"dash\":\"\",\"lls\":\"https://pull-lls-l1-sg01.tiktokcdn.com/game/stream-1848419295776211036.sdp?expire=1775016070&sign=676cf83b30b1f79eb93cc2a4c626243e\",\"tsl\":\"\",\"tile\":\"\",\"rtc\":\"\",\"sdk_params\":\"{\\\"resolution\\\":\\\"1080x1920\\\",\\\"gop\\\":4,\\\"cdn_name\\\":\\\"ws\\\",\\\"VCodec\\\":\\\"h264\\\",\\\"Auto\\\":{\\\"Demotion\\\":{\\\"StallCount\\\":4},\\\"Enable\\\":1},\\\"vbitrate\\\":8400000}\"}},\"hd\":{\"main\":{\"flv\":\"https://pull-flv-l1-sg01.tiktokcdn.com/game/stream-1848419295776211036_hd.flv?expire=1775016070&sign=1080e4ca548bd5f82ef571cc85903bc1\",\"hls\":\"https://pull-hls-l1-sg01.tiktokcdn.com/game/stream-1848419295776211036_hd/playlist.m3u8?expire=1775016070&sign=eb701676b389d80c687773b5e0f4d419\",\"cmaf\":\"\",\"dash\":\"\",\"lls\":\"https://pull-lls-l1-sg01.tiktokcdn.com/game/stream-1848419295776211036_hd.sdp?expire=1775016070&sign=944a5503d3db1a657b5894bfea67cdb8\",\"tsl\":\"\",\"tile\":\"\",\"rtc\":\"\",\"sdk_params\":\"{\\\"v_rtbitrate\\\":1761760,\\\"v_rtbitrate_std\\\":62560,\\\"v_rtpsnr\\\":0,\\\"v_rtbitrate_pct\\\":1853390,\\\"stream_suffix\\\":\\\"hd\\\",\\\"vbitrate\\\":1800000,\\\"resolution\\\":\\\"720x1280\\\",\\\"gop\\\":4,\\\"v_rtbitrate_vpaas_timestamp\\\":1773806470278,\\\"VCodec\\\":\\\"h264\\\",\\\"Auto\\\":{\\\"Enable\\\":1,\\\"Demotion\\\":{\\\"StallCount\\\":4}},\\\"v_rtbitrate_timestamp\\\":1773806467018,\\\"cdn_name\\\":\\\"ws\\\"}\"}},\"sd\":{\"main\":{\"flv\":\"https://pull-flv-l1-sg01.tiktokcdn.com/game/stream-1848419295776211036_sd.flv?expire=1775016070&sign=1f972a9f3ffee9e3e11fc53bc8901573\",\"hls\":\"https://pull-hls-l1-sg01.tiktokcdn.com/game/stream-1848419295776211036_sd/playlist.m3u8?expire=1775016070&sign=0737058acd1428560b27d3aa1933e66d\",\"cmaf\":\"\",\"dash\":\"\",\"lls\":\"https://pull-lls-l1-sg01.tiktokcdn.com/game/stream-1848419295776211036_sd.sdp?expire=1775016070&sign=8ccbb3d0ca6b8919802a09c61fac80d2\",\"tsl\":\"\",\"tile\":\"\",\"rtc\":\"\",\"sdk_params\":\"{\\\"Auto\\\":{\\\"Demotion\\\":{\\\"StallCount\\\":4},\\\"Enable\\\":1},\\\"VCodec\\\":\\\"h264\\\",\\\"v_rtbitrate_timestamp\\\":1773793805044,\\\"gop\\\":4,\\\"v_rtbitrate_pct\\\":1227160,\\\"cdn_name\\\":\\\"ws\\\",\\\"resolution\\\":\\\"540x960\\\",\\\"stream_suffix\\\":\\\"sd\\\",\\\"v_rtbitrate\\\":1184740,\\\"v_rtpsnr\\\":0,\\\"v_rtbitrate_std\\\":137180,\\\"vbitrate\\\":1200000,\\\"v_rtbitrate_vpaas_timestamp\\\":1773806470278}\"}},\"ld\":{\"main\":{\"flv\":\"https://pull-flv-l1-sg01.tiktokcdn.com/game/stream-1848419295776211036_ld.flv?expire=1775016070&sign=45db48801206d7678e31a57f99e25e0e\",\"hls\":\"https://pull-hls-l1-sg01.tiktokcdn.com/game/stream-1848419295776211036_ld/playlist.m3u8?expire=1775016070&sign=c7949cc1291b8291eb3bac99d16faf75\",\"cmaf\":\"\",\"dash\":\"\",\"lls\":\"https://pull-lls-l1-sg01.tiktokcdn.com/game/stream-1848419295776211036_ld.sdp?expire=1775016070&sign=4702087b577c98c27a1985fd05bd581d\",\"tsl\":\"\",\"tile\":\"\",\"rtc\":\"\",\"sdk_params\":\"{\\\"v_rtbitrate_vpaas_timestamp\\\":1773806470278,\\\"v_rtbitrate_timestamp\\\":1773806459089,\\\"gop\\\":4,\\\"v_rtbitrate\\\":531520,\\\"cdn_name\\\":\\\"ws\\\",\\\"stream_suffix\\\":\\\"ld\\\",\\\"vbitrate\\\":600000,\\\"v_rtpsnr\\\":0,\\\"Auto\\\":{\\\"Demotion\\\":{\\\"StallCount\\\":4},\\\"Enable\\\":1},\\\"VCodec\\\":\\\"h264\\\",\\\"v_rtbitrate_pct\\\":569430,\\\"v_rtbitrate_std\\\":23930,\\\"resolution\\\":\\\"360x640\\\"}\"}},\"uhd_60\":{\"main\":{\"flv\":\"https://pull-flv-l1-sg01.tiktokcdn.com/game/stream-1848419295776211036_uhd60.flv?expire=1775016070&sign=c5bffc91e7a5dcde535b3ded0af0fc7f\",\"hls\":\"https://pull-hls-l1-sg01.tiktokcdn.com/game/stream-1848419295776211036_uhd60/playlist.m3u8?expire=1775016070&sign=e3095f367e0755890e81b9a6cc829399\",\"cmaf\":\"\",\"dash\":\"\",\"lls\":\"https://pull-lls-l1-sg01.tiktokcdn.com/game/stream-1848419295776211036_uhd60.sdp?expire=1775016070&sign=c3385b772371e0a70690034e1e075f15\",\"tsl\":\"\",\"tile\":\"\",\"rtc\":\"\",\"sdk_params\":\"{\\\"gop\\\":4,\\\"cdn_name\\\":\\\"ws\\\",\\\"Auto\\\":{\\\"Demotion\\\":{\\\"StallCount\\\":4},\\\"Enable\\\":1},\\\"VCodec\\\":\\\"h264\\\",\\\"stream_suffix\\\":\\\"uhd60\\\",\\\"vbitrate\\\":5000000,\\\"resolution\\\":\\\"1080x1920\\\"}\"}},\"hd_60\":{\"main\":{\"flv\":\"https://pull-flv-l1-sg01.tiktokcdn.com/game/stream-1848419295776211036_hd60.flv?expire=1775016070&sign=5dab7b121657e298c66ebf070f2fd97b\",\"hls\":\"https://pull-hls-l1-sg01.tiktokcdn.com/game/stream-1848419295776211036_hd60/playlist.m3u8?expire=1775016070&sign=9c31fd6531305fed8fab68b87d2736d1\",\"cmaf\":\"\",\"dash\":\"\",\"lls\":\"https://pull-lls-l1-sg01.tiktokcdn.com/game/stream-1848419295776211036_hd60.sdp?expire=1775016070&sign=2d13eb7d1aa6a867368a81139211dfe0\",\"tsl\":\"\",\"tile\":\"\",\"rtc\":\"\",\"sdk_params\":\"{\\\"resolution\\\":\\\"720x1280\\\",\\\"Auto\\\":{\\\"Enable\\\":1,\\\"Demotion\\\":{\\\"StallCount\\\":4}},\\\"VCodec\\\":\\\"h264\\\",\\\"gop\\\":4,\\\"cdn_name\\\":\\\"ws\\\",\\\"stream_suffix\\\":\\\"hd60\\\",\\\"vbitrate\\\":3000000}\"}},\"ao\":{\"main\":{\"flv\":\"https://pull-flv-l1-sg01.tiktokcdn.com/game/stream-1848419295776211036.flv?expire=1775016070&sign=09f8f551ed25dd2492c1f36c21a99f5d&only_audio=1\",\"hls\":\"\",\"cmaf\":\"\",\"dash\":\"\",\"lls\":\"\",\"tsl\":\"\",\"tile\":\"\",\"rtc\":\"\",\"sdk_params\":\"{\\\"vbitrate\\\":0,\\\"resolution\\\":\\\"\\\",\\\"gop\\\":4,\\\"cdn_name\\\":\\\"ws\\\",\\\"stream_suffix\\\":\\\"ao\\\",\\\"Auto\\\":{\\\"Enable\\\":1,\\\"Demotion\\\":{\\\"StallCount\\\":4}},\\\"VCodec\\\":\\\"h264\\\"}\"}}}}" }, "push_data": { "push_stream_level": 0, "resolution_params": {}, "stream_data": "" } }, "provider": 0, "push_resolution": "", "push_urls": [], "resolution_name": { "AUTO": "AUTO", "FULL_HD1": "1080p", "HD1": "720p", "ORIGION": "Original", "SD1": "360p", "SD2": "540p", "pm_mt_video_1080p60": "1080p60", "pm_mt_video_720p60": "720p60", "ttlive_videoQuality_option_2k": "2K" }, "rtmp_pull_url": "https://pull-flv-l1-sg01.tiktokcdn.com/game/stream-1848419295776211036.flv?expire=1775016070&session_id=148-2026031812011014795160E4D0EB490726&sign=09f8f551ed25dd2492c1f36c21a99f5d", "rtmp_pull_url_params": "{\"resolution\":\"1080x1920\",\"gop\":4,\"cdn_name\":\"ws\",\"VCodec\":\"h264\",\"Auto\":{\"Demotion\":{\"StallCount\":4},\"Enable\":1},\"vbitrate\":8400000}", "rtmp_push_url": "", "rtmp_push_url_params": "", "stream_app_id": 0, "stream_control_type": 0, "stream_delay_ms": 0, "stream_size_height": 0, "stream_size_width": 0, "vr_type": 0 }, "stream_url_filtered_info": { "is_gated_room": false, "is_paid_event": false }, "sub_tag": 0, "support_quiz": 0, "title": "cuenta mr stiven", "top_fans": [ { "fan_ticket": 5889, "user": { "allow_find_by_contacts": false, "allow_others_download_video": false, "allow_others_download_when_sharing_video": false, "allow_share_show_profile": false, "allow_show_in_gossip": false, "allow_show_my_action": false, "allow_strange_comment": false, "allow_unfollower_comment": false, "allow_use_linkmic": false, "avatar_large": { "avg_color": "", "height": 0, "image_type": 0, "is_animated": false, "open_web_url": "", "uri": "1080x1080/tos-maliva-avt-0068/4eecc69819032da43be65480298de70f", "url_list": [ "https://p16-sign-va.tiktokcdn.com/tos-maliva-avt-0068/4eecc69819032da43be65480298de70f~tplv-tiktokx-cropcenter:1080:1080.webp?dr=14579&refresh_token=dfdaf54d&x-expires=1773979200&x-signature=LQNU09FUguxUMw%2FVrRXiFiiN1yg%3D&t=4d5b0474&ps=13740610&shp=a5d48078&shcp=fdd36af4&idc=my3", "https://p16-sign-va.tiktokcdn.com/tos-maliva-avt-0068/4eecc69819032da43be65480298de70f~tplv-tiktokx-cropcenter:1080:1080.jpeg?dr=14579&refresh_token=266738ac&x-expires=1773979200&x-signature=jRvB1kfzaqZuRaNaxTdJzgOrhQY%3D&t=4d5b0474&ps=13740610&shp=a5d48078&shcp=fdd36af4&idc=my3" ], "width": 0 }, "avatar_medium": { "avg_color": "", "height": 0, "image_type": 0, "is_animated": false, "open_web_url": "", "uri": "720x720/tos-maliva-avt-0068/4eecc69819032da43be65480298de70f", "url_list": [ "https://p16-sign-va.tiktokcdn.com/tos-maliva-avt-0068/4eecc69819032da43be65480298de70f~tplv-tiktokx-cropcenter:720:720.webp?dr=14579&refresh_token=3cfb12a8&x-expires=1773979200&x-signature=XkLkxxZZxm9LN8EKw4omBHIuWDQ%3D&t=4d5b0474&ps=13740610&shp=a5d48078&shcp=fdd36af4&idc=my3", "https://p16-sign-va.tiktokcdn.com/tos-maliva-avt-0068/4eecc69819032da43be65480298de70f~tplv-tiktokx-cropcenter:720:720.jpeg?dr=14579&refresh_token=939d166f&x-expires=1773979200&x-signature=ukG%2Fh8jRU5HCbDokYXq7DFGYEi0%3D&t=4d5b0474&ps=13740610&shp=a5d48078&shcp=fdd36af4&idc=my3" ], "width": 0 }, "avatar_thumb": { "avg_color": "", "height": 0, "image_type": 0, "is_animated": false, "open_web_url": "", "uri": "100x100/tos-maliva-avt-0068/4eecc69819032da43be65480298de70f", "url_list": [ "https://p16-sign-va.tiktokcdn.com/tos-maliva-avt-0068/4eecc69819032da43be65480298de70f~tplv-tiktokx-cropcenter:100:100.webp?dr=14579&refresh_token=914829a8&x-expires=1773979200&x-signature=FqLSj1ywnkyxKyHV1tl6KleqV%2FU%3D&t=4d5b0474&ps=13740610&shp=a5d48078&shcp=fdd36af4&idc=my3", "https://p16-sign-va.tiktokcdn.com/tos-maliva-avt-0068/4eecc69819032da43be65480298de70f~tplv-tiktokx-cropcenter:100:100.jpeg?dr=14579&refresh_token=2743c2a2&x-expires=1773979200&x-signature=z5PhTUb6oI9W%2BFh609cquNwipF0%3D&t=4d5b0474&ps=13740610&shp=a5d48078&shcp=fdd36af4&idc=my3" ], "width": 0 }, "badge_image_list": [], "badge_list": [], "bg_img_url": "", "bio_description": "", "block_status": 0, "border_list": [], "comment_restrict": 0, "commerce_webcast_config_ids": [], "constellation": "", "create_time": 0, "deprecated1": 0, "deprecated12": 0, "deprecated13": 0, "deprecated15": 0, "deprecated16": false, "deprecated17": false, "deprecated18": "", "deprecated19": false, "deprecated2": 0, "deprecated21": 0, "deprecated28": false, "deprecated29": "", "deprecated3": 0, "deprecated4": 0, "deprecated5": "", "deprecated6": 0, "deprecated7": "", "deprecated8": 0, "disable_ichat": 0, "display_id": "kevin_zx.07", "enable_ichat_img": 0, "exp": 0, "fan_ticket_count": 0, "fold_stranger_chat": false, "follow_info": { "follow_status": 0, "follower_count": 308, "following_count": 175, "push_status": 0 }, "follow_status": 0, "ichat_restrict_type": 0, "id": 7519324647486572000, "id_str": "7519324647486571551", "is_anchor_marked": false, "is_block": false, "is_follower": false, "is_following": false, "is_subscribe": false, "link_mic_stats": 2, "media_badge_image_list": [], "mint_type_label": [], "modify_time": 1773800828, "need_profile_guide": false, "new_real_time_icons": [], "nickname": "J E O V A N Y 🩸", "pay_grade": { "deprecated20": 0, "deprecated22": 0, "deprecated23": 0, "deprecated24": 0, "deprecated25": 0, "deprecated26": 0, "grade_banner": "", "grade_describe": "", "grade_icon_list": [], "level": 0, "name": "", "next_name": "", "next_privileges": "", "score": 0, "screen_chat_type": 0, "upgrade_need_consume": 0 }, "pay_score": 0, "pay_scores": 0, "push_comment_status": false, "push_digg": false, "push_follow": false, "push_friend_action": false, "push_ichat": false, "push_status": false, "push_video_post": false, "push_video_recommend": false, "real_time_icons": [], "scm_label": "", "sec_uid": "MS4wLjABAAAAg4U7YuAaJLK69yPHDJt73idcP9m2z8bN8nzLyoDkkM_SFZTXskWugRri5hgW6vUl", "secret": 0, "share_qrcode_uri": "", "special_id": "", "status": 1, "ticket_count": 0, "top_fans": [], "top_vip_no": 0, "upcoming_event_list": [], "user_attr": { "admin_permissions": {}, "has_voting_function": false, "is_admin": false, "is_channel_admin": false, "is_muted": false, "is_super_admin": false, "mute_duration": 0 }, "user_role": 0, "verified": false, "verified_content": "", "verified_reason": "", "with_car_management_permission": false, "with_commerce_permission": false, "with_fusion_shop_entry": false } }, { "fan_ticket": 1829, "user": { "allow_find_by_contacts": false, "allow_others_download_video": false, "allow_others_download_when_sharing_video": false, "allow_share_show_profile": false, "allow_show_in_gossip": false, "allow_show_my_action": false, "allow_strange_comment": false, "allow_unfollower_comment": false, "allow_use_linkmic": false, "avatar_large": { "avg_color": "", "height": 0, "image_type": 0, "is_animated": false, "open_web_url": "", "uri": "1080x1080/tos-maliva-avt-0068/0467a87bac511970395365c863688481", "url_list": [ "https://p16-sign-va.tiktokcdn.com/tos-maliva-avt-0068/0467a87bac511970395365c863688481~tplv-tiktokx-cropcenter:1080:1080.webp?dr=14579&refresh_token=bbf0b099&x-expires=1773975600&x-signature=INwW5XDPpT3gNxD01kyrek8pOb0%3D&t=4d5b0474&ps=13740610&shp=a5d48078&shcp=fdd36af4&idc=my2", "https://p16-sign-va.tiktokcdn.com/tos-maliva-avt-0068/0467a87bac511970395365c863688481~tplv-tiktokx-cropcenter:1080:1080.jpeg?dr=14579&refresh_token=6085a909&x-expires=1773975600&x-signature=%2Brza%2FrMeTskGCLfptQU9%2FPxkJck%3D&t=4d5b0474&ps=13740610&shp=a5d48078&shcp=fdd36af4&idc=my2" ], "width": 0 }, "avatar_medium": { "avg_color": "", "height": 0, "image_type": 0, "is_animated": false, "open_web_url": "", "uri": "720x720/tos-maliva-avt-0068/0467a87bac511970395365c863688481", "url_list": [ "https://p16-sign-va.tiktokcdn.com/tos-maliva-avt-0068/0467a87bac511970395365c863688481~tplv-tiktokx-cropcenter:720:720.webp?dr=14579&refresh_token=40e50c79&x-expires=1773975600&x-signature=mphVRed5OGl%2FKZ7w47C%2F4pBFPUo%3D&t=4d5b0474&ps=13740610&shp=a5d48078&shcp=fdd36af4&idc=my2", "https://p16-sign-va.tiktokcdn.com/tos-maliva-avt-0068/0467a87bac511970395365c863688481~tplv-tiktokx-cropcenter:720:720.jpeg?dr=14579&refresh_token=a84e571f&x-expires=1773975600&x-signature=ryLh2MDbTKuFsiWpgnW9nTQkR5U%3D&t=4d5b0474&ps=13740610&shp=a5d48078&shcp=fdd36af4&idc=my2" ], "width": 0 }, "avatar_thumb": { "avg_color": "", "height": 0, "image_type": 0, "is_animated": false, "open_web_url": "", "uri": "100x100/tos-maliva-avt-0068/0467a87bac511970395365c863688481", "url_list": [ "https://p16-sign-va.tiktokcdn.com/tos-maliva-avt-0068/0467a87bac511970395365c863688481~tplv-tiktokx-cropcenter:100:100.webp?dr=14579&refresh_token=0cf75c75&x-expires=1773975600&x-signature=RHfGSUcP71lEVbhXI64PKlzyYu4%3D&t=4d5b0474&ps=13740610&shp=a5d48078&shcp=fdd36af4&idc=my2", "https://p16-sign-va.tiktokcdn.com/tos-maliva-avt-0068/0467a87bac511970395365c863688481~tplv-tiktokx-cropcenter:100:100.jpeg?dr=14579&refresh_token=f3f36690&x-expires=1773975600&x-signature=K8JkJdSEGQX25Nxzh8iRuKrdyiw%3D&t=4d5b0474&ps=13740610&shp=a5d48078&shcp=fdd36af4&idc=my2" ], "width": 0 }, "badge_image_list": [], "badge_list": [ { "OpenWebURL": "aweme://roma_redirect/?spark_page=user_level_main_page_privilege_panel", "combine": { "background": { "background_color_code": "#B3475AFF", "border_color_code": "", "image": { "avg_color": "", "height": 0, "image_type": 0, "is_animated": false, "open_web_url": "", "uri": "", "url_list": [], "width": 0 }, "left_side_image": { "avg_color": "", "height": 0, "image_type": 0, "is_animated": false, "open_web_url": "", "uri": "", "url_list": [], "width": 0 } }, "background_auto_mirrored": false, "background_dark_mode": { "background_color_code": "#B3475AFF", "border_color_code": "", "image": { "avg_color": "", "height": 0, "image_type": 0, "is_animated": false, "open_web_url": "", "uri": "", "url_list": [], "width": 0 }, "left_side_image": { "avg_color": "", "height": 0, "image_type": 0, "is_animated": false, "open_web_url": "", "uri": "", "url_list": [], "width": 0 } }, "display_type": 4, "font_style": { "border_color": "", "font_color": "", "font_size": 0, "font_width": 0 }, "icon": { "avg_color": "", "height": 0, "image_type": 0, "is_animated": false, "open_web_url": "aweme://roma_redirect/?spark_page=user_level_main_page_privilege_panel", "uri": "webcast-va/grade_badge_icon_lite_lv20_v1.png", "url_list": [ "https://p16-webcast.tiktokcdn.com/webcast-va/grade_badge_icon_lite_lv20_v1.png~tplv-obj.image", "https://p19-webcast.tiktokcdn.com/webcast-va/grade_badge_icon_lite_lv20_v1.png~tplv-obj.image" ], "width": 0 }, "icon_auto_mirrored": false, "multi_guest_show_style": 0, "padding": { "badge_width": 32, "horizontal_padding_rule": 0, "icon_bottom_padding": 0, "icon_top_padding": 0, "left_padding": 0, "middle_padding": 0, "right_padding": 0, "use_specific": true, "vertical_padding_rule": 0 }, "padding_new_font": { "badge_width": 32, "horizontal_padding_rule": 0, "icon_bottom_padding": 0, "icon_top_padding": 0, "left_padding": 0, "middle_padding": 0, "right_padding": 0, "use_specific": true, "vertical_padding_rule": 0 }, "personal_card_show_style": 15, "profile_card_panel": { "badge_text_position": 0, "profile_content": { "icon_list": [], "use_content": false }, "projection_config": { "icon": { "avg_color": "", "height": 0, "image_type": 0, "is_animated": false, "open_web_url": "", "uri": "", "url_list": [], "width": 0 }, "use_projection": false }, "use_new_profile_card_style": false }, "public_screen_show_style": 14, "ranklist_online_audience_show_style": 0, "str": "22" }, "display": true, "display_status": 0, "display_type": 4, "exhibition_type": 0, "greyed_by_client": 0, "is_customized": false, "position": 1, "priority_type": 20, "privilege_log_extra": { "data_version": "2", "end_time": 0, "level": "22", "privilege_id": "7138381861675357988", "privilege_order_id": "mock_fix_width_transparent_7138381861675357988", "privilege_version": "0", "start_time": 0 }, "scene_type": 8 } ], "bg_img_url": "", "bio_description": "", "block_status": 0, "border_list": [], "comment_restrict": 0, "commerce_webcast_config_ids": [], "constellation": "", "create_time": 0, "deprecated1": 0, "deprecated12": 0, "deprecated13": 0, "deprecated15": 0, "deprecated16": false, "deprecated17": false, "deprecated18": "", "deprecated19": false, "deprecated2": 0, "deprecated21": 0, "deprecated28": false, "deprecated29": "", "deprecated3": 0, "deprecated4": 0, "deprecated5": "", "deprecated6": 0, "deprecated7": "", "deprecated8": 0, "disable_ichat": 0, "display_id": "ivan.a.borbon", "enable_ichat_img": 0, "exp": 0, "fan_ticket_count": 0, "fold_stranger_chat": false, "follow_info": { "follow_status": 0, "follower_count": 80, "following_count": 224, "push_status": 0 }, "follow_status": 0, "ichat_restrict_type": 0, "id": 6838241872218359000, "id_str": "6838241872218358789", "is_anchor_marked": false, "is_block": false, "is_follower": false, "is_following": false, "is_subscribe": false, "link_mic_stats": 2, "media_badge_image_list": [], "mint_type_label": [7160893592603462000], "modify_time": 1773769839, "need_profile_guide": false, "new_real_time_icons": [], "nickname": "Shenrro", "pay_grade": { "deprecated20": 0, "deprecated22": 0, "deprecated23": 0, "deprecated24": 0, "deprecated25": 0, "deprecated26": 0, "grade_banner": "", "grade_describe": "", "grade_icon_list": [], "level": 0, "name": "", "next_name": "", "next_privileges": "", "score": 0, "screen_chat_type": 0, "upgrade_need_consume": 0 }, "pay_score": 0, "pay_scores": 0, "push_comment_status": false, "push_digg": false, "push_follow": false, "push_friend_action": false, "push_ichat": false, "push_status": false, "push_video_post": false, "push_video_recommend": false, "real_time_icons": [], "scm_label": "", "sec_uid": "MS4wLjABAAAAA6-mF5-rk3cfvimJwN1t4AGPbXpsgMqF5Xi0NaoK937ZU7-W-qBEW9mx29qACZ70", "secret": 1, "share_qrcode_uri": "", "special_id": "", "status": 1, "ticket_count": 0, "top_fans": [], "top_vip_no": 0, "upcoming_event_list": [], "user_attr": { "admin_permissions": {}, "has_voting_function": false, "is_admin": false, "is_channel_admin": false, "is_muted": false, "is_super_admin": false, "mute_duration": 0 }, "user_role": 0, "verified": false, "verified_content": "", "verified_reason": "", "with_car_management_permission": false, "with_commerce_permission": false, "with_fusion_shop_entry": false } }, { "fan_ticket": 1107, "user": { "allow_find_by_contacts": false, "allow_others_download_video": false, "allow_others_download_when_sharing_video": false, "allow_share_show_profile": false, "allow_show_in_gossip": false, "allow_show_my_action": false, "allow_strange_comment": false, "allow_unfollower_comment": false, "allow_use_linkmic": false, "avatar_large": { "avg_color": "", "height": 0, "image_type": 0, "is_animated": false, "open_web_url": "", "uri": "1080x1080/tos-maliva-avt-0068/c280efb15ed5032ccc498e6815b1906e", "url_list": [ "https://p16-sign-va.tiktokcdn.com/tos-maliva-avt-0068/c280efb15ed5032ccc498e6815b1906e~tplv-tiktokx-cropcenter:1080:1080.webp?dr=14579&refresh_token=0f1c5e7c&x-expires=1773979200&x-signature=%2B2xuFvHOYKm3ExXq5jCT%2BIl8GzY%3D&t=4d5b0474&ps=13740610&shp=a5d48078&shcp=fdd36af4&idc=my3", "https://p16-sign-va.tiktokcdn.com/tos-maliva-avt-0068/c280efb15ed5032ccc498e6815b1906e~tplv-tiktokx-cropcenter:1080:1080.jpeg?dr=14579&refresh_token=12734165&x-expires=1773979200&x-signature=jqV9CyQkIOnOcJoYcWhir8puNOg%3D&t=4d5b0474&ps=13740610&shp=a5d48078&shcp=fdd36af4&idc=my3" ], "width": 0 }, "avatar_medium": { "avg_color": "", "height": 0, "image_type": 0, "is_animated": false, "open_web_url": "", "uri": "720x720/tos-maliva-avt-0068/c280efb15ed5032ccc498e6815b1906e", "url_list": [ "https://p16-sign-va.tiktokcdn.com/tos-maliva-avt-0068/c280efb15ed5032ccc498e6815b1906e~tplv-tiktokx-cropcenter:720:720.webp?dr=14579&refresh_token=39ddc11d&x-expires=1773979200&x-signature=HVqVecS7AmYVesEk3h8wxM1w3sw%3D&t=4d5b0474&ps=13740610&shp=a5d48078&shcp=fdd36af4&idc=my3", "https://p16-sign-va.tiktokcdn.com/tos-maliva-avt-0068/c280efb15ed5032ccc498e6815b1906e~tplv-tiktokx-cropcenter:720:720.jpeg?dr=14579&refresh_token=9c433d7c&x-expires=1773979200&x-signature=5lhVy%2F71A%2FkFRZhAT9NGvyXHtPE%3D&t=4d5b0474&ps=13740610&shp=a5d48078&shcp=fdd36af4&idc=my3" ], "width": 0 }, "avatar_thumb": { "avg_color": "", "height": 0, "image_type": 0, "is_animated": false, "open_web_url": "", "uri": "100x100/tos-maliva-avt-0068/c280efb15ed5032ccc498e6815b1906e", "url_list": [ "https://p16-sign-va.tiktokcdn.com/tos-maliva-avt-0068/c280efb15ed5032ccc498e6815b1906e~tplv-tiktokx-cropcenter:100:100.webp?dr=14579&refresh_token=192ba954&x-expires=1773979200&x-signature=JTi9HAa%2B8N5IwE6jyVnBGA3bupU%3D&t=4d5b0474&ps=13740610&shp=a5d48078&shcp=fdd36af4&idc=my3", "https://p16-sign-va.tiktokcdn.com/tos-maliva-avt-0068/c280efb15ed5032ccc498e6815b1906e~tplv-tiktokx-cropcenter:100:100.jpeg?dr=14579&refresh_token=488b4da9&x-expires=1773979200&x-signature=URvXbsCrc5gTeGu2m3n%2F3aQiDgI%3D&t=4d5b0474&ps=13740610&shp=a5d48078&shcp=fdd36af4&idc=my3" ], "width": 0 }, "badge_image_list": [], "badge_list": [], "bg_img_url": "", "bio_description": "👩🏽🦱💕", "block_status": 0, "border_list": [], "comment_restrict": 0, "commerce_webcast_config_ids": [], "constellation": "", "create_time": 0, "deprecated1": 0, "deprecated12": 0, "deprecated13": 0, "deprecated15": 0, "deprecated16": false, "deprecated17": false, "deprecated18": "", "deprecated19": false, "deprecated2": 0, "deprecated21": 0, "deprecated28": false, "deprecated29": "", "deprecated3": 0, "deprecated4": 0, "deprecated5": "", "deprecated6": 0, "deprecated7": "", "deprecated8": 0, "disable_ichat": 0, "display_id": "rxxnal", "enable_ichat_img": 0, "exp": 0, "fan_ticket_count": 0, "fold_stranger_chat": false, "follow_info": { "follow_status": 0, "follower_count": 41, "following_count": 161, "push_status": 0 }, "follow_status": 0, "ichat_restrict_type": 0, "id": 7471332853295302000, "id_str": "7471332853295301678", "is_anchor_marked": false, "is_block": false, "is_follower": false, "is_following": false, "is_subscribe": false, "link_mic_stats": 2, "media_badge_image_list": [], "mint_type_label": [], "modify_time": 1773760849, "need_profile_guide": false, "new_real_time_icons": [], "nickname": "rxxnal", "pay_grade": { "deprecated20": 0, "deprecated22": 0, "deprecated23": 0, "deprecated24": 0, "deprecated25": 0, "deprecated26": 0, "grade_banner": "", "grade_describe": "", "grade_icon_list": [], "level": 0, "name": "", "next_name": "", "next_privileges": "", "score": 0, "screen_chat_type": 0, "upgrade_need_consume": 0 }, "pay_score": 0, "pay_scores": 0, "push_comment_status": false, "push_digg": false, "push_follow": false, "push_friend_action": false, "push_ichat": false, "push_status": false, "push_video_post": false, "push_video_recommend": false, "real_time_icons": [], "scm_label": "", "sec_uid": "MS4wLjABAAAAq3fHx1yjd1uHT_8hNsbACsmMsPvfbIZlzmWknh35Z4U1e98aepk-j_H_-orjJoV4", "secret": 0, "share_qrcode_uri": "", "special_id": "", "status": 1, "ticket_count": 0, "top_fans": [], "top_vip_no": 0, "upcoming_event_list": [], "user_attr": { "admin_permissions": {}, "has_voting_function": false, "is_admin": false, "is_channel_admin": false, "is_muted": false, "is_super_admin": false, "mute_duration": 0 }, "user_role": 0, "verified": false, "verified_content": "", "verified_reason": "", "with_car_management_permission": false, "with_commerce_permission": false, "with_fusion_shop_entry": false } } ], "use_filter": false, "user_count": 1925, "user_share_text": "", "video_feed_tag": "", "visible_scope_type": 0, "watch_day_cnt_layer": 0, "watch_early_quota_config": {}, "webcast_comment_tcs": 0, "webcast_sdk_version": 0, "with_draw_something": false, "with_ktv": false, "with_linkmic": true }
Example:
0
Was this page helpful?
⌘I

