動画モニタリングタスクを作成

5 件のエンドポイント • ベース: https://openapi.scdata.cc

動画を定期モニタリングに登録します。作成後、タスクは停止されるまで一定間隔でエンゲージメントのスナップショットを収集し、結果はタスク詳細エンドポイントから取得します。タスク作成はクォータ消費の大きいプレミアム操作です。

POST/api/v1/monitor/video/tasks/create

クォータ消費: このエンドポイントへの成功したリクエスト 1 件あたり、プランのクォータが 1500 単位消費されます。

リクエストパラメータ

必須パラメータ

名前位置型説明
platformbodystringPlatform: tiktok, youtube, instagram
example: string
video_idbodystringVideo identifier (TikTok video_id / YouTube video_id / Instagram media_code)
example: string

レスポンスフィールド

名前型説明
successbooleanSuccess
codeintegerCode
messagestringMessage
dataobject-
data.monitor_idstringMonitor ID
data.platformstringPlatform
data.video_idstringVideo identifier
data.video_titlestringVideo title
data.author_idstringAuthor identifier
data.author_namestringAuthor name
data.monitor_statusintegerMonitoring status: 0 = monitoring, 10 = completed, 20 = stopped, -1 = error
data.monitor_start_datestringMonitoring start date
data.monitor_end_datestringMonitoring end date
data.last_snapshot_timestringLast collected at
data.snapshot_countintegerSnapshots collected
data.created_timestringCreated at

お試し実行

https://openapi.scdata.cc/api/v1/monitor/video/tasks/create
ダッシュボードのAPIキーを選択
リクエストを送信する前にAPIキーを入力してください。ダッシュボードを開く

JSONボディ

cURL の例

bash
curl -X POST "https://openapi.scdata.cc/api/v1/monitor/video/tasks/create" \
-H "Authorization: YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{"platform":"string","video_id":"string"}'

レスポンス例 (200 application/json)

json
{
"success": true,
"code": 200,
"message": "Request successful",
"data": {
"monitor_id": "string",
"platform": "string",
"video_id": "string",
"video_title": "string",
"video_description": "string",
"video_publish_at": "2019-08-24T14:15:22.123Z",
"video_url": "string",
"video_cover": "string",
"video_type": "string",
"author_id": "string",
"author_name": "string",
"monitor_status": 0,
"monitor_start_date": "2019-08-24",
"monitor_end_date": "2019-08-24",
"last_snapshot_time": "2019-08-24T14:15:22.123Z",
"snapshot_count": 0,
"created_time": "2019-08-24T14:15:22.123Z"
}
}

ユースケース

  • スポンサー動画の追跡 — 有料タイアップ動画を公開日から監視し、最初の数週間でエンゲージメントがどう伸びるかを把握します。
  • 競合の新作監視 — 競合のキャンペーン動画を追跡し、自社との勢いを比較します。

関連エンドポイント