Choose an integration

REST is available today. Language SDKs are in source preview until their registry releases ship.

Pick the path that matches how you ship. REST is the working baseline; the language SDKs wrap the same endpoints and add caches, background sync, and typed accessors.

Availability today

  • REST API — Available. Works from any language or platform.
  • Web / JS SDK — Source preview. Registry release pending.
  • Flutter, iOS, Android, .NET SDKs — Source preview. Registry releases pending.
Preview
Preview SDKs live in this repository and can be vendored or built from source. Registry install commands (npm i …, flutter pub add …) will begin to work once the corresponding registry release ships — see SDK & package availability.

Rule of thumb

  • Server → server: use REST directly. It is the most stable surface.
  • Client apps needing offline cache, polling, and typed accessors: use the matching SDK once its registry release ships. Until then, wrap REST.
  • Browsers: never hold a signing secret. Use unsigned publishable-key requests.

Where to go next

Back to top