← Back

TikTok Hashtag Videos Scraper

webcrawler/tiktok-hashtag-videos

TikTok Hashtag Videos Scraper allows to get videos with a hashtag: author info, video info, music info, stats, hashtags.

$7.00 / 1,000 requests

TikTok Hashtag Videos 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: {
            "query": "cartoons",
            "offset": "30",
        },
        crawler_id: "webcrawler/tiktok-hashtag-videos",
    })
    console.log(response)
}

main().catch(console.error);