get https://api.scrapecreators.com/v1/tiktok/profile/videos
*Only grabs videos right now, not photo carousels yet
Note: "cursor" can be ANY timestamp! 🥳
So say you don't want to get their latest videos, you want to get their videos starting Sept 1st 2024.
Well to do that, just create a timestamp (like I do in JS below) and pass that to "cursor".
If that doesn't make sense, shoot me an email and I can walk you through it: [email protected]
// Create date for September 1st, 2024
const targetDate = new Date('2024-09-01T00:00:00Z');
// Get timestamp in milliseconds
const timestamp = targetDate.getTime();
console.log(timestamp);
// Output: 1725148800000