How do I use Srape for posts please

Hi,

I’m trying to scrape all posts url from my account so I can repost them on others but I don’t know how to do this on J.

Can someone please explain if this is possible and how do I do this?

Thank you so much

I don’t use JV so don’t know the exact answer to your question. I make a graphql query like this

https://instagram.com/graphql/query/?query_id=17888483320059182&id=308516219&first=12

id=308516219 is my account’s ig id (the query works for all accounts, not just your own). You can query 12 posts at a time. The first page’s json will return an end cursor which you use to query the next page like this

https://instagram.com/graphql/query/?query_id=17888483320059182&id=308516219&first=12&after=QVFDSFNFa2xLWEZJdDEyTTVOeVZ0b25MUzBFc1ZZcjgyMWhERndkcVUzdnV2aFhtbWgtTHk4eE9pX2FaNWttbnl4TGw0WmZ6Ykk2NUpvUG1uZTVaQktYSQ==

where QVFDSFNFa2xLWEZJdDEyTTVOeVZ0b25MUzBFc1ZZcjgyMWhERndkcVUzdnV2aFhtbWgtTHk4eE9pX2FaNWttbnl4TGw0WmZ6Ykk2NUpvUG1uZTVaQktYSQ==
is the end cursor of the first page

you keep on making queries with next end cursor until you reach a page with has_next_page=false

1 Like

have you tried to put your account to the repost tool as the source?