23 OCT 2025 - We are back! If you have been following us over the last few years, you will know that the last 2 months have been rough. We website was practically not loading. Sorry for the mess. We are back though and everything should run smoothly now. New servers. Updated domains. And new owners. We invite you all to start uploading torrents again!
I have also made a YouTube channel (https://www.youtube.com/channel/UC5-NI9LvFBwLnFCY87zz6QQ) for the videos in these torrents.
You can use the HTML files included with the torrent to view the images so that two or more images are often displayed side by side depending on the dimensions of your browser window and the orientation of the images.
I have selected the pictures in this torrent and the previous volumes from a pool of about 4 million pictures posted by about 600,000 users, even though I had to reject many of the users because they were not female, too old, too young, or not Finnish.
Other torrents like this:
https://www.nyaa.se/?page=view&tid=901143 (Instagram videos of Japanese girls vol 4)
http://1337x.to/torrent/2060720/Facebook-pics-of-Finnish-girls-vol-9/
http://1337x.to/torrent/1799747/VKontakte-pictures-of-girls-from-Russian-indigenous-peoples-vol-5/
I made the first volumes through Instagram's API, but in June 2016 Instagram made most of the functionality of their API available only to applications that have passed a review process. They still however provide JSON data on the pages for users, posts, and search results for tags, and you can add the parameter __a=1 to a URL to only include the JSON data.
I used a script like this to search for posts with specific tags:
for tag in ylioppilas2016 heppatyttö;do
max=
while :;do
c=$(curl -s "https://www.instagram.com/explore/tags/$tag/?__a=1&max_id=$max")
jq -r '.tag|.name as$name|.media.nodes[]?|$name+" "+.owner.id+" "+.id+" "+.code+" "+.display_src'<<<"$c"
max=$(jq -r .tag.media.page_info.end_cursor<<<"$c")
jq -e .tag.media.page_info.has_next_page<<<"$c">/dev/null||break
done
done
I used a script like this to make a list of all media posted by users: