cURL
curl --request GET \
--url 'https://api.keyapi.ai/v1/tiktok/live/detail/analytics?room_ids=7552598204001405710' \
--header 'Authorization: Bearer <YOUR_API_KEY>'import requests
response = requests.get(
'https://api.keyapi.ai/v1/tiktok/live/detail/analytics',
params={"room_ids": "7552598204001405710"},
headers={'Authorization': 'Bearer <YOUR_API_KEY>'}
)
print(response.json())const params = new URLSearchParams({"room_ids": "7552598204001405710"});
const response = await fetch(`https://api.keyapi.ai/v1/tiktok/live/detail/analytics?${params}`, {
method: 'GET',
headers: { 'Authorization': 'Bearer <YOUR_API_KEY>' }
});
const data = await response.json();
console.log(data);{
"code": 0,
"message": "success",
"data": [
{
"avatar": "https://echosell-images.tos-ap-southeast-1.volces.com/user-avatar/92/MS4wLjABAAAARbAbXQxL5Y226gRq9oF3-gC6noCYK4mBquMHk55r9Jxje5JytDImFa2P-r4yV7ro.jpeg",
"category": "Shopping & Retail",
"cover_url": "",
"create_time": 1758476363,
"duration": 84090,
"finish_time": 1758560453,
"followers_growth_rate": 0.003482208132624495,
"gpm": 0,
"ifl_most_category_product": "[{ \"category_name\":\"Beauty & Personal Care\",\"category_id\":\"601450\"}]",
"live_sale_top3_product": "[]",
"live_status": 4,
"live_type": 1,
"max_views_cnt": 924,
"nick_name": "Based Bodyworks",
"per_live_sale_30d_cnt": 100,
"per_live_sale_gmv_30d_amt": 2894.745,
"product_category_gmv_distribution": "[]",
"product_category_quantity_distribution": "[]",
"region": "US",
"room_id": "7552598204001405710",
"sales_flag": 0,
"spu_avg_price": 0,
"title": "HOT DEALS ON ALL PRODUCTS!!",
"total_active_product_cnt": 0,
"total_followers_growth_cnt": 4101,
"total_ifl_digg_cnt": 31987286,
"total_ifl_followers_cnt": 1198818,
"total_ifl_post_video_cnt": 5937,
"total_live_30d_cnt": 27,
"total_live_commerce_30d_cnt": 4,
"total_product_cnt": 0,
"total_sale_cnt": 0,
"total_sale_gmv_amt": 0,
"total_views_cnt": 281956,
"unique_id": "based",
"user_id": "7153432386608251946"
}
],
"requestId": "de61bc0e-aac0-4657-843c-d7575368c839"
}{
"code": 400,
"data": null,
"message": "Missing required parameter: handle"
}{
"code": 401,
"data": null,
"message": "apiKey is null"
}{
"code": 402,
"data": null,
"message": "apiKey quota is not enough"
}{
"code": 429,
"data": null,
"message": "qps limit exceeded"
}{
"code": 500,
"data": null,
"message": "Internal server error"
}TikTok Content
Live Detail -EchoTik
Get detailed analytics for one or more collected TikTok live rooms by room_ids. This endpoint is useful for single-session live review, live room archiving, and checking sales, GMV, viewers, products, creator profile, and region data.
GET
/
v1
/
tiktok
/
live
/
detail
/
analytics
cURL
curl --request GET \
--url 'https://api.keyapi.ai/v1/tiktok/live/detail/analytics?room_ids=7552598204001405710' \
--header 'Authorization: Bearer <YOUR_API_KEY>'import requests
response = requests.get(
'https://api.keyapi.ai/v1/tiktok/live/detail/analytics',
params={"room_ids": "7552598204001405710"},
headers={'Authorization': 'Bearer <YOUR_API_KEY>'}
)
print(response.json())const params = new URLSearchParams({"room_ids": "7552598204001405710"});
const response = await fetch(`https://api.keyapi.ai/v1/tiktok/live/detail/analytics?${params}`, {
method: 'GET',
headers: { 'Authorization': 'Bearer <YOUR_API_KEY>' }
});
const data = await response.json();
console.log(data);{
"code": 0,
"message": "success",
"data": [
{
"avatar": "https://echosell-images.tos-ap-southeast-1.volces.com/user-avatar/92/MS4wLjABAAAARbAbXQxL5Y226gRq9oF3-gC6noCYK4mBquMHk55r9Jxje5JytDImFa2P-r4yV7ro.jpeg",
"category": "Shopping & Retail",
"cover_url": "",
"create_time": 1758476363,
"duration": 84090,
"finish_time": 1758560453,
"followers_growth_rate": 0.003482208132624495,
"gpm": 0,
"ifl_most_category_product": "[{ \"category_name\":\"Beauty & Personal Care\",\"category_id\":\"601450\"}]",
"live_sale_top3_product": "[]",
"live_status": 4,
"live_type": 1,
"max_views_cnt": 924,
"nick_name": "Based Bodyworks",
"per_live_sale_30d_cnt": 100,
"per_live_sale_gmv_30d_amt": 2894.745,
"product_category_gmv_distribution": "[]",
"product_category_quantity_distribution": "[]",
"region": "US",
"room_id": "7552598204001405710",
"sales_flag": 0,
"spu_avg_price": 0,
"title": "HOT DEALS ON ALL PRODUCTS!!",
"total_active_product_cnt": 0,
"total_followers_growth_cnt": 4101,
"total_ifl_digg_cnt": 31987286,
"total_ifl_followers_cnt": 1198818,
"total_ifl_post_video_cnt": 5937,
"total_live_30d_cnt": 27,
"total_live_commerce_30d_cnt": 4,
"total_product_cnt": 0,
"total_sale_cnt": 0,
"total_sale_gmv_amt": 0,
"total_views_cnt": 281956,
"unique_id": "based",
"user_id": "7153432386608251946"
}
],
"requestId": "de61bc0e-aac0-4657-843c-d7575368c839"
}{
"code": 400,
"data": null,
"message": "Missing required parameter: handle"
}{
"code": 401,
"data": null,
"message": "apiKey is null"
}{
"code": 402,
"data": null,
"message": "apiKey quota is not enough"
}{
"code": 429,
"data": null,
"message": "qps limit exceeded"
}{
"code": 500,
"data": null,
"message": "Internal server error"
}🪙1 creditper request
Copy for AI
🤖 Why Code When AI Can Do It For You?
Stop writing code like it’s 1970! Let AI do the heavy lifting - click the sparkles to copy a perfectly formatted prompt for ChatGPT, Claude, or your favorite AI assistant.
Authorizations
Query Parameters
One or more room IDs separated by commas.
Example:
"7552598204001405710"
⌘I

