Skip to content

Instantly share code, notes, and snippets.

@thisAdo
thisAdo / tiktok.js
Created May 18, 2026 02:26
Tiktok Downloader/Search
// © 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}`, {
@thisAdo
thisAdo / pin-search.js
Created May 18, 2026 01:11
Pinterest Search (Imágenes/Vídeos)
// © 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';