Email me if you need anything: [email protected]

Especially if you want other API’s that I don’t have yet

Tiktok Profile

Example:

  const res = await axios({
    method: "POST",
    url: "<https://api.scrapecreators.com/tiktok/profile>",
    headers: {
      "x-api-key": process.env.API_TOKEN,
    },
    data: {
      handle: "stoolpresidente",
    },
  });
  console.log("res.data", res.data);

Tiktok Videos of a user

  const res = await axios({
    method: "POST",
    url: "<https://api.scrapecreators.com/tiktok/profile-videos>",
    headers: {
      "x-api-key": process.env.API_TOKEN,
    },
    data: {
      sec_uid:
        "MS4wLjABAAAAINC_ElRR-l1RCcnEjOZhNO-9wOzAMf-YHXqRY8vvG9bEhMRa6iu23TaE3JPZYXBD",
      amount: 10,
    },
  });
  console.log("res.data", res.data);

Tiktok Video

*This doesn’t get the download video url yet. If you need that send me an email [email protected] and I can prioritize getting that

  const res = await axios({
    method: "POST",
    url: "<https://api.scrapecreators.com/tiktok/video>",
    headers: {
      "x-api-key": process.env.API_TOKEN,
    },
    data: {
      handle: "stoolpresidente",
      videoId: "7412767288484531487",
    },
  });
  console.log("res.data", res.data)