NB Scraper Docs - v1.3.0
    Preparing search index...

    Function tutwuriBypass

    • Bypasses tutwuri.id shortlinks (originating from sfl.gl). Requires an API key from fgsi.koyeb.app for Turnstile solving.

      Parameters

      Returns Promise<NBScraperResponse<TutwuriBypassData>>

      A promise that resolves to the bypassed URL data.

      import { tutwuriBypass } from 'nb-scraper';

      async function bypassLink() {
      const result = await tutwuriBypass({
      shortlink: 'https://sfl.gl/41EapuZ',
      apikey: 'YOUR_FGSI_API_KEY' // idk why he put the api key, but i still include this function, you can visit the fgsi site to get the apikey
      // SINCE THIS SERVICE IS OUT OF THE NB SCRAPE TEAM, THIS SERVICE NOT GUARANTEED TO BE LONG LIFE TERMS
      });

      if (result.status) {
      console.log('Bypassed URL:', result.data.url);
      }
      }

      bypassLink();

      FongsiDev