SoftSolzSoftSolz
HomeAPI GuideAPI ReferenceWidget Tester

Introduction

What the SoftSolz API is and how to find your way around.

The SoftSolz API is server-to-server. Every endpoint lives under https://app.softsolz.uk/api/v1/services/<service>/* and is authenticated with a secret key sent as a Bearer token. Browser origins are rejected - for in-browser experiences use the embed widgets instead.

Base URL

bash
https://app.softsolz.uk/api/v1/services/<service>/<resource>

Authentication in one line

Send your sk_* secret key as a Bearer token. See Authentication for the full picture.

bash
curl https://app.softsolz.uk/api/v1/services/forms/forms \
-H "Authorization: Bearer sk_live_your_key"

Services

One consistent API across every service:

  • Forms, Blogs, Newsletter, Social Publishing
  • Invoicing, Payments, Customer Auth
  • Knowledge Hub, Workflows

Browse them all in the API Reference, with copy-paste samples in cURL, Node, Python and more.

Next steps