Simulix

SDKs

Three official client libraries, one for each ecosystem we hear most often from customers building on Simulix. All three are generated by Stainless from the OpenAPI 3.1 spec so the SDK matches the API exactly — no hand-rolled drift, no two-source-of-truth bugs.

Publishing during the launch window
The SDKs are wired in the build pipeline but not yet published to public registries. The REST API at api.simulix.com/v1/* is the documented integration surface today — see Quickstart for the curl + raw-HTTP path. For early access notifications, drop a note at founders@simulix.com.

The three targets

Why Stainless

Generated SDKs stay true to the API by construction. Every endpoint, every parameter, every error type comes from the OpenAPI 3.1 spec at api.simulix.com/v1/openapi.json. When a new endpoint ships, the SDK ships with it. There is no hand-authored client that can drift.

Stainless is also the SDK generator behind Anthropic, OpenAI, and Cloudflare's official clients — same generator, same idiomatic patterns, same retry + idempotency + polling helpers you'd expect from those.

Integration today

Until the SDKs publish, the REST API is the integration surface:

  • Quickstart — get your first simulation back in five minutes with curl.
  • API reference — full endpoint contract, request and response shapes, error codes.
  • Idempotency — the SDK pattern you'd want, replicated by hand: send an Idempotency-Key on every POST.
  • Webhooks — verify signatures yourself with HMAC-SHA256 while the SDK is in flight.