GET /v1/videos/by-external-id/external_video_id
Fetch video information and statistics by the platform-specific external_video_id (e.g., TikTok shortcode, YouTube ID).
📋 Overview
🔐 Headers
Authorization: Bearer YOUR_API_KEY
Content-Type: application/json
📝 Path Parameter
Example Request
curl -X GET https://api.influtics.com/v1/videos/by-external-id/7489443966908189959 \
-H "Authorization: Bearer your_api_key_here"
✅ Response
{
"success": true,
"data": {
"data": {
"video_id": "77168374-dd2c-496a-b1ae-3d4944f48ccb",
"external_video_id": "7489443966908189959",
"stats": {
"likes": {
"2025-06-30 08:26:03.730104+00": 56500,
"2025-06-31 08:26:03.730104+00": 56501
},
"views": {
"2025-06-30 08:26:03.730104+00": 1900000,
"2025-06-31 08:26:03.730104+00": 2000000
},
"reposts": {
"2025-06-30 08:26:03.730104+00": 6472,
"2025-06-31 08:26:03.730104+00": 6892
},
"comments": {
"2025-06-30 08:26:03.730104+00": 483,
"2025-06-31 08:26:03.730104+00": 526
}
},
"views": 2000000,
"likes": 56501,
"comments": 526,
"reposts": 6892,
"platform": "TikTok",
"created_at": "2025-06-30T08:25:29.97727+00:00",
"title": "Untitled",
"thumbnail_url": "https://p16-sign-sg.tiktokcdn.com/tos-alisg-p-0037/o4RDXBKwA1AIxAZnveUiiza7EC9fyAWvUgB2Er~tplv-tiktokx-origin.image?dr=10395&x-expires=1751443200&x-signature=ybmzuHGMEQlzlFoGAkOCX8dNvfk%3D&t=4d5b0474&ps=13740610&shp=81f88b70&shcp=43f4a2f9&idc=no1a",
"cpm": 0,
"er": 3.339736842105263,
"stats_last_updated": "2025-06-30T08:26:03.730104+00:00"
}
},
"meta": {
"request_id": "9f1b7e7e-1c36-49a9-8521-7b9180d8a1a8",
"processing_time_ms": 437
}
}
Not Found (404)
{
"success": false,
"error": "Video not found"
}