> ## 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.

# Quickstart

> Start building intelligent, self-healing automations right away

## Generate API Key

Sign up on our [developer console](https://app.nfig.ai) and create a new [API key](https://app.nfig.ai/settings)

## Installation

<Info>
  **Prerequisite**: Please install Node.js (version 20 or higher) before proceeding.
</Info>

<CodeGroup>
  ```bash bash theme={null}
  npm install --save nfig-sdk
  # or
  yarn add nfig-sdk
  ```
</CodeGroup>

## Send your first request

<CodeGroup>
  ```javascript javascript theme={null}
  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")
  }())

  ```
</CodeGroup>

Please find the Nfig SDK [NPM Package](https://www.npmjs.com/package/nfig-sdk) here.
