Instagram Reels Scraper avatar
Instagram Reels Scraper

Pricing

$14.00/month + usage

Go to Store
Instagram Reels Scraper

Instagram Reels Scraper

Developed by

Hpix

Hpix

Maintained by Community

Scrape Instagram Reels and their respective profile efficiently.

5.0 (1)

Pricing

$14.00/month + usage

29

Total users

416

Monthly users

172

Runs succeeded

>99%

Issues response

4.7 days

Last modified

2 months ago

ND

can you do the function to get data of correct date

Closed

andreykakalug1 opened this issue
a month ago

for example, i've posted reel 5 days ago and then posted also about 50 reel. How can i get statictics of reel that i've posted 5 days ago?

FI

figfig95

a month ago

yeah, it will be really good, because i am stupid

Hpix avatar

Hpix (Hpix)

24 days ago

Hey! You could do that using the "Custom function" option, under "Advanced Settings". Here is an example function that skips posts if they've been posted after July 1st:

{
shouldSkip: (data) => {
const cutoffDate = new Date('2025-07-01').getTime() / 1000;
return data.kind === 'post' && data.taken_at > cutoffDate;
}
}

You could change the date (2025-07-01) on this function to get different resuts.

Another option would be to use the "Individual Posts" option to scrape specific posts based on their code or URL. Let me know if these options works for you, I'm planning to add a date filter as well.