SoftSolzSoftSolz
HomeAPI GuideAPI ReferenceWidget Tester
site builder

List the designed starter templates a website can begin from.

Each starter is a complete, designed website. Pick one by id for POST /projects/from-starter when the person wants a polished start; its services array tells you which SoftSolz services already have a designed slot in its pages (connecting those costs no page edits).

GEThttps://app.softsolz.uk/api/v1/services/site-builder/starters

Recent Requests

Log in to see full request history
TimeStatusUser Agent
Make a request to see history.

Headers

Authorizationstringrequired

Bearer token: `Bearer sk_live_...` (or `sk_test_...` for sandbox). A login token will not work here.

Response

Response Body · array of objects

idstringStarter id for POST /projects/from-starter.
namestringStarter name.
categorystringKind of site.
taglinestringOne line pitch.
descriptionstringWhat the template includes.
tagsarray of stringsSearch tags.
pagesarray of objectsPages it ships: { path, title }.
featuresarray of stringsHighlights.
servicesarray of stringsServices with a designed slot already in the pages.
thumbnail_urlstringPreview image path.
file_countintegerFiles in the template.

Request

import { SoftSolz } from '@softsolz/sdk';
const client = new SoftSolz({ apiKey: process.env.SOFTSOLZ_API_KEY });
const result = await client.siteBuilder.getStarters();
console.log(result);

Credentials

Sent as a Bearer token. Stored only in your browser.

Response · 200

{
"data": [
{
"id": "string",
"name": "string",
"category": "string",
"tagline": "string",
"description": "string",
"tags": [],
"pages": [],
"features": [],
"services": [],
"thumbnail_url": "string",
"file_count": 0
}
]
}