SDKs
Official Node and Python clients for the server API.
The SDKs wrap authentication, retries, pagination and error handling so you write less boilerplate.
Node
bash
npm install @softsolz/sdkjavascript
import { SoftSolz } from '@softsolz/sdk';
const client = new SoftSolz({ apiKey: process.env.SOFTSOLZ_API_KEY });
const entry = await client.forms.createFormSubmission('contact', { data: { email: 'jane@example.com' },});Published on npm as @softsolz/sdk.
Python
bash
pip install softsolzpython
import osfrom softsolz import SoftSolz
client = SoftSolz(api_key=os.environ["SOFTSOLZ_API_KEY"])
entry = client.forms.create_form_submission( "contact", body={"data": {"email": "jane@example.com"}},)Published on PyPI as softsolz.
Every endpoint, every language
The API Reference shows ready-to-run samples for each endpoint in cURL, Node, Python and more.