Quickstart
Install the SDK:
npm install @stockkit/sdkGet 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})What you can build on
Section titled “What you can build on”| 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 |
