Install a client library in your preferred language to get started quickly.
$ pip install scrapekitfrom scrapekit import ScrapeKit client = ScrapeKit(api_key="sk_live_your_key") # Scrape an Instagram profile result = client.scrape.profile(username="natgeo") print(result.follower_count)
$ npm install scrapekitimport { ScrapeKit } from "scrapekit";
const client = new ScrapeKit({ apiKey: "sk_live_your_key" });
// Scrape an Instagram profile
const result = await client.scrape.profile({ username: "natgeo" });
console.log(result.followerCount);$ composer require scrapekit/scrapekit-phpuse ScrapeKit\Client;
$client = new Client('sk_live_your_key');
// Scrape an Instagram profile
$result = $client->scrape->profile(['username' => 'natgeo']);
echo $result['follower_count'];$ gem install scrapekitrequire "scrapekit" client = ScrapeKit::Client.new(api_key: "sk_live_your_key") # Scrape an Instagram profile result = client.scrape.profile(username: "natgeo") puts result.follower_count
$ go get github.com/scrapekit/scrapekit-gopackage main
import (
"fmt"
scrapekit "github.com/scrapekit/scrapekit-go"
)
func main() {
client := scrapekit.New("sk_live_your_key")
result, _ := client.Scrape.Profile("natgeo")
fmt.Println(result.FollowerCount)
}Don't see your language?
Request an SDK →