← Back

TikTok Profile Scraper

webcrawler/tiktok-profile

TikTok Profile Scraper allows to get basic profile information of a TikTok user: nickname, id, profile signature, avatar image links, basic stats (likes, views, followers).

$3.00 / 1,000 requests

TikTok Profile 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: {
            "id": "@dailydailycartoons",
        },
        crawler_id: "webcrawler/tiktok-profile",
    })
    console.log(response)
}

main().catch(console.error);