Niche Trends Logo

Niche Trends

Upload TikTok Data

Upload one or more JSON files containing TikTok video data for analysis. Each file should contain an array of video objects with engagement metrics. You can upload multiple files (1x file per creator) for comprehensive analysis.

Expected JSON Format:

[
  {
    "id": "video_id",
    "text": "Video caption",
    "createTime": 1642723200,
    "authorMeta": {
      "name": "username",
      "nickName": "Display Name"
    },
    "musicMeta": {
      "musicName": "Song Name",
      "musicAuthor": "Artist",
      "musicOriginal": false,
      "musicId": "music_id"
    },
    "diggCount": 1000,
    "shareCount": 50,
    "playCount": 10000,
    "commentCount": 100,
    "hashtags": [{"name": "hashtag1"}],
    "videoMeta": {
      "duration": 30,
      "coverUrl": "thumbnail_url"
    },
    "webVideoUrl": "video_url"
  }
]