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

    Function ffstalk

    • Fetches and parses Free Fire user information based on their UID.

      Parameters

      • uid: string

        The User ID of the Free Fire account.

      Returns Promise<NBScraperResponse<FFStalkData>>

      A promise that resolves to the scraped account data.

      import { ffstalk } from 'nb-scraper';

      async function getFreeFireAccount() {
      const result = await ffstalk('USER_ID_HERE');
      if (result.status) {
      console.log('Player Name:', result.data.accountInfo['Nickname']);
      console.log('Guild:', result.data.guildInfo['Guild Name']);
      } else {
      console.error(result.error);
      }
      }

      getFreeFireAccount();

      YogikID