Black-Friday Black-Friday
logo

Quickly Scrape Instagram Posts Checker - Scrape Instagram Posts Data

RealdataAPI / quick-instagram-posts-checker

Quickly Scrape Instagram posts using Quick Instagram Posts data scraper to analyze Instagram data. Use the scraper in Canada, France, Australia, Germany, the USA, the UK, Spain, and other countries.

Features of Quick Instagram Posts Checker

The quickest monitoring of Instagram counters: you can get post-like amounts for any public Instagram post with the total post count for a given account.

Note that this scraper rounds up after 100 counts.

What are the Usage Costs of Quick Instagram Post Checker?

To scrape a hundred posts, you will spend 0.02 Compute Units.

Input example

{
  "startUrls": [
    {
      "url": "https://www.instagram.com/p/ChZsDAQPqND/"
    },
    {
      "url": "https://www.instagram.com/p/Cha5TXKJcKE/"
    }
  ]
}

Output example

[{
  "url": "https://www.instagram.com/p/Cha5TXKJcKE/",
  "likesCount": 36122,
  "stats": {
    "profile": "rarebeauty",
    "isVerified": true,
    "posts": 2565,
    "followers": 3300000
  }
},
{
  "url": "https://www.instagram.com/p/ChV_bsevUst",
  "likesCount": 0,
  "stats": {
    "profile": "landdear",
    "isVerified": false,
    "posts": 250,
    "followers": 937
  }
},
{
  "url": "https://www.instagram.com/p/CZmXE2wtsUm",
  "likesCount": 3690,
  "stats": {
    "profile": "swizzcars",
    "isVerified": false,
    "posts": 328,
    "followers": 203000
  }
},
{
  "url": "https://www.instagram.com/p/ChZsDAQPqND/",
  "likesCount": 4,
  "stats": {
    "profile": "rayongmarriott",
    "isVerified": false,
    "posts": 1094,
    "followers": 3361
  }
}]

Quick Instagram Posts Scraper with Integrations

Lastly, using Real Data API integrations, you can connect Quick Instagram Posts Scraper with any web application or cloud service. You can integrate with Zapier, Make, Slack, GitHub, Google Drive, Google Sheets, and more. Further, you can take action after an event occurrence using webhooks.

Using Quick Instagram Posts Scraping Actor with Real Data API

The Instagram Scraper gives you programmatic access to the Real Data API platform. We've organized this actor around RESTful HTTP endpoints to allow you to schedule, manage and execute Real Data API actors. The scraper also allows access to datasets, retrieving results, tracking API performance, updating or creating versions, and more.

To use the API using Python, try the PyPl package. To use the API using Node.js, try the NPM package.

Explore the API tab to check code examples to execute this API.

Industries

Check out how industries use Quick Instagram Posts Checker worldwide.

saas-btn.webp

E-commerce & Retail

You should have a Real Data API account to execute the program examples. Replace < YOUR_API_TOKEN > in the program using the token of your actor. Read about the live APIs with Real Data API docs for more explanation.

import { RealdataAPIClient } from 'RealdataAPI-Client';

// Initialize the RealdataAPIClient with API token
const client = new RealdataAPIClient({
    token: '<YOUR_API_TOKEN>',
});

// Prepare actor input
const input = {
    "startUrls": [
        {
            "url": "https://www.instagram.com/p/CeoM7sMsLIU/"
        }
    ]
};

(async () => {
    // Run the actor and wait for it to finish
    const run = await client.actor("realdataapi/quick-instagram-posts-checker").call(input);

    // Fetch and print actor results from the run's dataset (if any)
    console.log('Results from dataset');
    const { items } = await client.dataset(run.defaultDatasetId).listItems();
    items.forEach((item) => {
        console.dir(item);
    });
})();
from realdataapi_client import RealdataAPIClient

# Initialize the RealdataAPIClient with your API token
client = RealdataAPIClient("<YOUR_API_TOKEN>")

# Prepare the actor input
run_input = { "startUrls": [{ "url": "https://www.instagram.com/p/CeoM7sMsLIU/" }] }

# Run the actor and wait for it to finish
run = client.actor("realdataapi/quick-instagram-posts-checker").call(run_input=run_input)

# Fetch and print actor results from the run's dataset (if there are any)
for item in client.dataset(run["defaultDatasetId"]).iterate_items():
    print(item)
# Set API token
API_TOKEN=<YOUR_API_TOKEN>

# Prepare actor input
cat > input.json <<'EOF'
{
  "startUrls": [
    {
      "url": "https://www.instagram.com/p/CeoM7sMsLIU/"
    }
  ]
}
EOF

# Run the actor
curl "https://api.realdataapi.com/v2/acts/realdataapi~quick-instagram-posts-checker/runs?token=$API_TOKEN" /
  -X POST /
  -d @input.json /
  -H 'Content-Type: application/json'

Instagram POST URLs

startUrls Required Array

You can expect only public post URLs to work; if you feed any other link, it will give you blank output

ON THIS PAGE
Instagram POST URLs
{
  "startUrls": [
    {
      "url": "https://www.instagram.com/p/CeoM7sMsLIU/"
    }
  ]
}