DOCUMENTATION / QUICKSTART
Quickstart
Start with public read APIs. Import the lightweight TypeScript client from sdk/index.ts in this repository; the SDK is not yet published to npm.
import { InterOS } from "./sdk";
const market = new InterOS("https://YOUR_DEPLOYMENT");
const { assets, warnings } = await market.assets.list();
const apple = await market.assets.get("AAPL");Designed for honest integrations.
Network requests can fail. Handle unavailable data and partial portfolio coverage, and inspect freshness before using a price.
Open API playground →