nexora-tiktok-search
v0.0.1
Published
TikTok video search and download API - Search TikTok videos by keywords
Maintainers
Readme
🎵 TikTok Scraper API
Search and download TikTok videos without official API - Easy to use Node.js package

✨ Features
- 🔍 Search videos by keywords
- 📥 Get download links (HD available)
- 👤 Author information (username, nickname, avatar)
- 📊 Video statistics (views, likes, comments, shares)
- 🎵 Music info for videos
- ⚡ Fast & lightweight
📦 Installation
npm install nexora-tiktok-search
==============🚀 Quick Start================
const TikTokScraper = require('nexora-tiktok-search');
// Initialize
const tiktok = new TikTokScraper();
// Search videos
async function searchVideos() {
try {
const results = await tiktok.search('cute cats', 10);
console.log(results);
} catch (error) {
console.error(error.message);
}
}
// Get single video info
async function getVideo() {
try {
const video = await tiktok.getVideoInfo('https://www.tiktok.com/@user/video/123456789');
console.log(video);
} catch (error) {
console.error(error.message);
}
}
===========📤 Returns===========
[
{
id: "123456789",
description: "Video description",
author: "username",
nickname: "Display Name",
avatar: "https://...",
thumbnail: "https://...",
duration: 15,
views: 1000000,
likes: 50000,
comments: 1000,
shares: 500,
url: "https://www.tiktok.com/@username/video/123456789",
downloadUrl: "https://...",
music: "Song title",
createdAt: 1700000000
}
]