Scrape "About this Account" Information

Joined
Nov 16, 2020
Messages
7
Reaction score
2
I am looking for a way to scrape "About this account" information from Instagram you see when you click on the username (App or Web), which contains Data like Account Registration date or Country. In the Browser it fetches the information from this URL
https://www.instagram.com/async/wbloks/fetch/?appid=com.bloks.www.ig.about_this_account&type=app but needs a fbdtsg tag against CSRF which makes it quite complicated to scrape this information from this endpoint. Is there a simpler endpoint (maybe for the mobile app) or a git project which wraps this functionality?
 
You can use HTTP/S traffic recorders to check which headers are being sent and then use that to make each requests.

Also can do that for login so your workflow would look like login -> get session -> get user data
 
Back
Top