Skip to main content

Documentation Index

Fetch the complete documentation index at: https://docs.nfig.io/llms.txt

Use this file to discover all available pages before exploring further.

Generate API Key

Sign up on our developer console and create a new API key

Installation

Prerequisite: Please install Node.js (version 20 or higher) before proceeding.
npm install --save nfig-sdk
# or
yarn add nfig-sdk

Send your first request

import { NfigClient } from 'nfig-sdk';
(async ()=>{
const nfig = new NfigClient({
  apiKey: "YOUR_API_KEY",
});
await nfig.createSession()
const response = await nfig.act("Go to google.com")
}())

Please find the Nfig SDK NPM Package here.