Skip to main content

Prerequisites

  • Node.js 18 or higher
  • npm or yarn
  • BoostGPT account with API keys

Install Core SDK

npm install boostgpt
or with yarn:
yarn add boostgpt

Install Router SDK

npm install @boostgpt/router

Get API Keys

1

Go to Dashboard

2

Create Project

Create a new project if you don’t have one
3

Generate API Key

Go to Settings -> API Keys -> Generate New Key
4

Save Credentials

Copy your Project ID and API Key

Environment Setup

Create a .env file in your project root:
BOOSTGPT_PROJECT_ID=your_project_id
BOOSTGPT_API_KEY=your_api_key

Verify Installation

import { BoostGPT } from 'boostgpt';

const client = new BoostGPT({
  project_id: process.env.BOOSTGPT_PROJECT_ID,
  key: process.env.BOOSTGPT_API_KEY
});

console.log('BoostGPT SDK installed successfully!');

Next Steps

Quickstart

Build your first bot