
Instagram Reels Scraper
Pricing
$14.00/month + usage

Instagram Reels Scraper
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
can you do the function to get data of correct date
Closed
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?
figfig95
yeah, it will be really good, because i am stupid

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.