โ† Back

Instagram Post Scraper

webcrawler/instagram-post

Get public data from Instagram Post. Extract post data, author info, and related profiles from Instagram post URL.

$3.00 / 1,000 requests

Instagram Post Scraper API Javascript integration

Install dependency

npm i webcrawlerapi-js

How to get an access key?

Read Docs Access Key section to obtain a key.

Usage

import webcrawlerapi from \"webcrawlerapi-js\";

async function main() {
    const client = new webcrawlerapi.WebcrawlerClient(
    \"YOUR API KEY HERE\"
    )
    const response = await client.scrape({
        input: {
            "url": "https://www.instagram.com/p/DCFFXjOxWd5",
        },
        crawler_id: "webcrawler/instagram-post",
    })
    console.log(response)
}

main().catch(console.error);