Post Comment

Publishes a comment to a video

PREMIUM ENDPOINT

Publish a comment to a video on tiktok

GET https://kitkot.xyz/api/video/comments/publish

Posts a comment on the video you specify with the text & session_key you provide

Query Parameters

Name
Type
Description

api_key*

String

The api_key you got when purchasing our service

aweme_id*

String

The aweme_id of the video to publish the comment on

text*

String

The text of the comment

session_key*

String

The session_key you got from our login endpoint

{
  code: 200,
  comment: {
    user: {
      avatar_medium: [Object],
      follower_count: 0,
      user_tags: null,
      is_discipline_member: false,
      video_icon: [Object],
      aweme_count: 0,
      verify_info: '',
      custom_verify: '',
      ins_id: '',
      account_region: '',
      is_block: false,
      shield_follow_notice: 0,
      user_mode: 1,
      cover_url: [Array],
      special_account: [Object],
      favoriting_count: 0,
      user_canceled: false,
      twitter_id: '',
      is_ad_fake: false,
      nickname: '',
      is_phone_binded: false,
      show_image_bubble: false,
      user_now_pack_info: {},
      follower_status: 0,
      signature: '',
      mutual_relation_avatars: null,
      verification_type: 0,
      type_label: null,
      fb_expire_time: 0,
      accept_private_policy: false,
      user_rate: 1,
      has_youtube_token: false,
      followers_detail: null,
      is_star: false,
      avatar_300x300: [Object],
      unique_id_modify_time: 1670953054,
      live_commerce: false,
      sec_uid: '',
      search_highlight: null,
      homepage_bottom_toast: null,
      advance_feature_item_order: null,
      following_count: 0,
      tw_expire_time: 0,
      user_profile_guide: null,
      enterprise_verify_reason: '',
      commerce_user_level: 0,
      secret: 0,
      avatar_thumb: [Object],
      has_facebook_token: false,
      with_shop_entry: false,
      youtube_channel_id: '',
      download_setting: 0,
      uid: '',
      youtube_channel_title: '',
      story_status: 0,
      twitter_name: '',
      avatar_uri: '',
      white_cover_url: null,
      account_labels: null,
      can_message_follow_status_list: null,
      has_orders: false,
      has_twitter_token: false,
      geofencing: null,
      hide_search: false,
      matched_friend_available: false,
      platform_sync_info: null,
      region: 'US',
      google_account: '',
      stitch_setting: 0,
      apple_account: 0,
      special_lock: 1,
      avatar_larger: [Object],
      shield_digg_notice: 0,
      mention_status: 1,
      download_prompt_ts: 0,
      shield_comment_notice: 0,
      create_time: 1667504852,
      react_setting: 0,
      need_recommend: 0,
      cha_list: null,
      user_period: 0,
      follow_status: 0,
      relative_users: null,
      language: 'en',
      unique_id: '',
      youtube_expire_time: 0,
      advanced_feature_info: null,
      authority_status: 0,
      has_insights: false,
      prevent_download: false,
      duet_setting: 0,
      bold_fields: null,
      bind_phone: '',
      live_agreement: 0,
      need_points: null,
      with_commerce_entry: false,
      cv_level: '',
      comment_filter_status: 0,
      comment_setting: 0,
      item_list: null,
      short_id: '0',
      live_verify: 2,
      shield_edit_field_info: null,
      events: null,
      status: 1,
      can_set_geofencing: null,
      avatar_168x168: [Object],
      total_favorited: 0,
      ad_cover_url: null,
      friends_status: 0,
      has_email: false,
      room_id: 0
    },
    label_list: null,
    text: 'My text posted on the comment!',
    reply_id: '0',
    cid: '',
    text_extra: [],
    reply_to_reply_id: '0',
    digg_count: 0,
    aweme_id: '',
    create_time: 1670953055,
    status: 7,
    user_digged: 0,
    reply_comment: []
  },
  msg: 'Comment sent successfully'
}
const BASEURL = "https://kitkot.xyz/api";
const API_KEY = "my-api-key";
const session_key = "my-session-key";
const aweme_id = "some-aweme_id";
const text = "Hello from a program!";

const request = await fetch(`${BASEURL}/video/comments/publish?api_key=${API_KEY}&session_key=${session_key}&aweme_id=${aweme_id}&text=${text}`);
const response = await request.json();
console.log(response);

Last updated