Instagram Profile Scraper (Bio & Posts) avatar
Instagram Profile Scraper (Bio & Posts)

Pricing

$1.10 / 1,000 results

Go to Store
Instagram Profile Scraper (Bio & Posts)

Instagram Profile Scraper (Bio & Posts)

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

12

Monthly users

12

Runs succeeded

93%

Issues response

22 days

Last modified

34 minutes ago

You can access the Instagram Profile Scraper (Bio & Posts) 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.

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

Instagram Profile Scraper (Bio & Posts) API in JavaScript

The Apify API client for JavaScript is the official library that allows you to use Instagram Profile Scraper (Bio & Posts) API in JavaScript or TypeScript, providing convenience functions and automatic retries on errors.

Install the apify-client

$npm install apify-client

Other API clients include: