Api/Tikok

Ejemplo

fetch(`https://tiktok.apiwant.xyz/tiktok/v1/https://www.tiktok.com/@staryuukiii/video/7358879268085992747?lang=es`)
    .then(response => response.json())
    .then(data => {
        const result = data.result;
        console.log(result);
    })
    .catch(error => console.error("Error al obtener los datos:", error));

Respuesta

{
  data
}

Last updated