npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

tiktok-search-api

v1.1.1

Published

## How to Install

Downloads

19

Readme

TikTok Search Api

How to Install

npm install tiktok-search-api

How to Use

import { TikTokSearch } from 'tiktok-search-api'

const results = await TikTokSearch(keyword, ttwid, pageCount)

Arguments

  • keyword (String): This is the keyword you would like to search for (uses TikTok search)
  • ttwid (String): ttwid cookie
    • get this from your Application--cookies tab in your browser
    • include only the cookie with no semicolon, equals sign or cookie name
  • pageCount (Number): number of pages you would like to get
    • each page is ~12 videos, so pageCount of 10 would give ~120 results

Results

Here is a sample of the results. The results are an array of video objects with the most important parts being the item.id (video id) and the author object where you can find the author uniqueId among other things

 [{
    type: 1,
    item: {
      id: '7202140515909782790',
      desc: 'Retraite 3days 🤍🙌🏾#fypシ #christiantiktok #God #retraitespirituelle ',
      createTime: 1676879023,
      video: [Object],
      author: [Object],
      music: [Object],
      challenges: [Array],
      stats: [Object],
      duetInfo: [Object],
      originalItem: false,
      officalItem: false,
      textExtra: [Array],
      secret: false,
      forFriend: false,
      digged: false,
      itemCommentStatus: 0,
      showNotPass: false,
      vl1: false,
      itemMute: false,
      authorStats: [Object],
      privateItem: false,
      duetEnabled: true,
      stitchEnabled: true,
      shareEnabled: true,
      stickersOnItem: [Array],
      isAd: false,
      collected: false
    },
    common: { doc_id_str: '7202140515909782790' }
  },
  ...
 ]

Errors

Not tested with high page count. It is recommended to start off with a pageCount of 3 - 7. Using higher page counts may give errors.