tiktok-private-api
Version:
Unofficial TikTok API wrapper for scraping user info and posts.
44 lines (26 loc) • 743 B
Markdown
This is an unofficial light-weight scraper for TikTok.com to fetch posts and user info.
```
npm i tiktok-private-api
```
```ts
import { TikTokClient } from "tiktok-private-api";
```
```ts
import { TikTokClient } from "tiktok-private-api";
(async () => {
const scraper = new TikTokClient();
const data = await scraper.user.info("redbull");
console.log(data);
})();
```
Software contributions are welcome.
If you need features that are not implemented — feel free to implement them and create PRs!
Please open an issue if you have questions, wish to request a feature, etc.