TypeScript SDK reference for CSFloat

Documentation for csfloat-node-sdk

This site documents the public runtime surface of csfloat-node-sdk: resources, workflows, helpers, write payloads, transport behavior, examples, and coverage notes for the currently mapped CSFloat surface.

  • Resources, workflows, helpers, and CLI
  • Write payloads, transport behavior, and error handling
  • Coverage notes, changelog, examples, and repository context
GitHub repository
Quick start
import { CsfloatSdk } from "csfloat-node-sdk"

const sdk = new CsfloatSdk({
  apiKey: process.env.CSFLOAT_API_KEY!,
  minRequestDelayMs: 1250,
})

const feeds = await sdk.workflows.getPublicMarketFeeds()

Getting Started

Install the package, authenticate, and make the first useful requests.

Resource Reference

Method-level reference for resources, workflows, helpers, and transport.

Write Flows

Payloads, caveats, and examples for mutation-heavy SDK usage.

Coverage Matrix

Route validation notes and what is implemented, low-level, or still exploratory.

Repository overview

csfloat-node-sdk is both a published package and a maintained repository: the SDK lives alongside its documentation, coverage matrix, release history, examples, and tests. This site is the easiest way to navigate that material as documentation.

SDK packageThe npm package exposes typed resources, workflow helpers, builders, transport primitives, and a small CLI.
Documentation setThe docs cover setup, method reference, write-heavy flows, helpers, transport details, and practical recipes.
Repository artifactsThe repository also contains the coverage matrix, release history, examples, and tests that support the package.