This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // © Ado | 2026 | |
| // Tiktok Search/Downloader | |
| const q = ""; // Aquí la búsqueda a realizar o link del vídeo a descargar :D | |
| const limit = 18; | |
| const API = "https://www.tikwm.com"; | |
| const UA = "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/124.0.0.0 Safari/537.36"; | |
| async function api(endpoint, params) { | |
| const res = await fetch(`${API}${endpoint}`, { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // © Ado | 2026 | |
| // • Pinterest Search Videos/Images | |
| import axios from 'axios'; | |
| const SEARCH = ''; // La búsqueda a realizar :D | |
| const LIMIT = 20; | |
| class Pinterest { | |
| constructor() { | |
| this.origin = 'https://www.pinterest.com'; |