Insta Bio & Posts Scraper avatar
Insta Bio & Posts Scraper

Pricing

$1.10 / 1,000 results

Go to Store
Insta Bio & Posts Scraper

Insta Bio & Posts Scraper

Developed by

CoderX

CoderX

Maintained by Community

Instagram Profile Insights Scraper is a lightweight tool that collects detailed public data from a list of Instagram usernames. It fetches profile info and recent posts to help you analyze accounts at scale.

0.0 (0)

Pricing

$1.10 / 1,000 results

0

Total users

5

Monthly users

5

Runs succeeded

>99%

Issues response

4.9 days

Last modified

9 days ago

You can access the Insta Bio & Posts Scraper programmatically from your own applications by using the Apify API. You can also choose the language preference from below. To use the Apify API, you’ll need an Apify account and your API token, found in Integrations settings in Apify Console.

1from apify_client import ApifyClient
2
3# Initialize the ApifyClient with your Apify API token
4# Replace '<YOUR_API_TOKEN>' with your token.
5client = ApifyClient("<YOUR_API_TOKEN>")
6
7# Prepare the Actor input
8run_input = {
9 "usernames": [{ "username": "bulebarbie_official" }],
10 "cookies": [
11 {
12 "name": "datr",
13 "value": "sL_rZ1VMWqwRVcCuWXiAQmZX",
14 "domain": ".instagram.com",
15 "path": "/",
16 "expires": 1778063286.150982,
17 "httpOnly": True,
18 "secure": True,
19 },
20 {
21 "name": "ig_did",
22 "value": "1C8AA31D-EA64-4F7A-BFB7-A5E4CFB044A2",
23 "domain": ".instagram.com",
24 "path": "/",
25 "expires": 1775039289.586829,
26 "httpOnly": True,
27 "secure": True,
28 },
29 {
30 "name": "mid",
31 "value": "Z-u_sAALAAFLVNABqbKzftY5QmVX",
32 "domain": ".instagram.com",
33 "path": "/",
34 "expires": 1778063286.151132,
35 "httpOnly": True,
36 "secure": True,
37 },
38 {
39 "name": "csrftoken",
40 "value": "K2icskn2peDTQSn8Fpc4d0UeXI5gvHUA",
41 "domain": ".instagram.com",
42 "path": "/",
43 "expires": 1774971325.552493,
44 "httpOnly": False,
45 "secure": True,
46 },
47 {
48 "name": "ds_user_id",
49 "value": "73139193689",
50 "domain": ".instagram.com",
51 "path": "/",
52 "expires": 1751297725.552724,
53 "httpOnly": False,
54 "secure": True,
55 },
56 {
57 "name": "sessionid",
58 "value": "73539491489%3A377qgGLgpVU9QO%3A18%3AAYdYA1n9adejJUjkr8k17j3-LCTLoeEC2wsBnd-_oA",
59 "domain": ".instagram.com",
60 "path": "/",
61 "expires": 1775039435.486017,
62 "httpOnly": True,
63 "secure": True,
64 },
65 {
66 "name": "wd",
67 "value": "1358x642",
68 "domain": ".instagram.com",
69 "path": "/",
70 "expires": 1744126523,
71 "httpOnly": False,
72 "secure": True,
73 "sameSite": "Lax",
74 },
75 {
76 "name": "rur",
77 "value": "\"RVA\\05473539498689\\0541775057726:01f7831497b9bd63ed547dedca6805d32284ae9700d432ff00bfdd136ae1c88416ec2841\"",
78 "domain": ".instagram.com",
79 "path": "/",
80 "expires": -1,
81 "httpOnly": True,
82 "secure": True,
83 "sameSite": "Lax",
84 },
85 ],
86}
87
88# Run the Actor and wait for it to finish
89run = client.actor("coderx/insta-bio-posts-scraper").call(run_input=run_input)
90
91# Fetch and print Actor results from the run's dataset (if there are any)
92print("πŸ’Ύ Check your data here: https://console.apify.com/storage/datasets/" + run["defaultDatasetId"])
93for item in client.dataset(run["defaultDatasetId"]).iterate_items():
94 print(item)
95
96# πŸ“š Want to learn more πŸ“–? Go to β†’ https://docs.apify.com/api/client/python/docs/quick-start

Insta Bio & Posts Scraper API in Python

The Apify API client for Python is the official library that allows you to use Insta Bio & Posts Scraper API in Python, providing convenience functions and automatic retries on errors.

Install the apify-client

$pip install apify-client

Other API clients include: