⚙️Initializing the Client
Get up and running in just a few easy steps.
Initial Setup
The first step to integration is generating a config using the ShogunQuoteApiClient
function. The most basic info you'll need is your Shogun API Key
, which is used for tracking fee shares
import { ShogunQuoteApiClient } from '@shogun-sdk/root';
// Create a new client instance
const client = new ShogunQuoteApiClient(
'YOUR_API_KEY', // Get this from Shogun dashboard
'https://api.intensitylabs.ai' // API endpoint
);
Last updated