Gathering detailed insights and metrics for tiktokapi-src
Gathering detailed insights and metrics for tiktokapi-src
Gathering detailed insights and metrics for tiktokapi-src
Gathering detailed insights and metrics for tiktokapi-src
npm install tiktokapi-src
Typescript
Module System
Node Version
NPM Version
JavaScript (100%)
Total Downloads
549,503
Last Day
16
Last Week
99
Last Month
302
Last Year
549,503
4 Stars
9 Commits
3 Forks
2 Watching
1 Branches
1 Contributors
Latest Version
1.2.0
Package Id
tiktokapi-src@1.2.0
Unpacked Size
43.55 kB
Size
9.93 kB
File Count
28
NPM Version
10.7.0
Node Version
20.10.0
Publised On
09 May 2024
Cumulative downloads
Total Downloads
Last day
-11.1%
16
Compared to previous day
Last week
16.5%
99
Compared to previous week
Last month
-29.1%
302
Compared to previous month
Last year
0%
549,503
Compared to previous year
3
This project uses the Unofficial API from Tiktok.
npm install tiktokapi-src
yarn add tiktokapi-src
1const Tiktok = require("tiktokapi-src") 2 3const tiktok_url = "https://vt.tiktok.com/ZS84BnrU9" 4 5Tiktok.Downloader(tiktok_url, { 6 version: "v1" // version: "v1" | "v2" | "v3" 7}).then((result) => { 8 console.log(result) 9})
1{ 2 status: "success" | "error" 3 message?: string 4 result?: { 5 type: "video" | "image" 6 id: string 7 createTime: number 8 description: string 9 isADS: boolean 10 hashtag: string[] 11 author: { 12 uid: string 13 username: string 14 nickname: string 15 signature: string 16 region: string 17 avatarLarger: string 18 avatarThumb: string 19 avatarMedium: string 20 url: string 21 } 22 statistics: { 23 playCount: number 24 downloadCount: number 25 shareCount: number 26 commentCount: number 27 diggCount: number 28 collectCount: number 29 forwardCount: number 30 whatsappShareCount: number 31 loseCount: number 32 loseCommentCount: number 33 whatsappShareCount: number 34 repostCount: number 35 } 36 video?: { 37 ratio: string 38 duration: number 39 playAddr: string 40 downloadAddr: string 41 cover: string 42 originCover: string 43 dynamicCover: string 44 } 45 images?: string[] 46 music: { 47 id: number 48 title: string 49 author: string 50 album: string 51 playUrl: string[] 52 coverLarge: string[] 53 coverMedium: string[] 54 coverThumb: string[] 55 duration: number 56 isCommerceMusic: boolean 57 isOriginalSound: boolean 58 isAuthorArtist: boolean 59 } 60 } 61}
1{ 2 status: "success" | "error" 3 message?: string 4 result?: { 5 type: "video" | "image" 6 description: string 7 author: { 8 nickname: string 9 avatr: string 10 } 11 statistics: { 12 likeCount: string 13 commentCount: string 14 shareCount: string 15 } 16 video?: string 17 images?: string[] 18 music: string 19 } 20}
1{ 2 status: "success" | "error" 3 message?: string 4 result?: { 5 type: "video" | "image" 6 desc?: string 7 author: { 8 avatar?: string 9 nickname: string 10 } 11 music?: string 12 images?: string[] 13 video1?: string 14 video2?: string 15 video_hd?: string 16 video_watermark?: string 17 } 18}
No vulnerabilities found.
No security vulnerabilities found.