Skip to content

Quickstart

Install the SDK:

Terminal window
npm install @stockkit/sdk

Get a quote and place a trade:

import { StockKit } from "@stockkit/sdk"
const stockkit = new StockKit({
apiKey: process.env.STOCKKIT_API_KEY
})
const quote = await stockkit.trade.quote({
ticker: "NVDA",
amount: 100
})
await stockkit.trade.buy({
ticker: "NVDA",
amount: 100
})
API What it does
Asset API Unified metadata for tokenized assets
Execution API Quotes and trade execution
Portfolio API Positions, exposure, PnL, activity
Agent API Machine-readable tools for AI agents