SoftSolzSoftSolz
HomeAPI GuideAPI ReferenceWidget Tester
seo

Changes being measured on this website.

Read a verdict only from the fields here. An experiment with fewer than the minimum days, or without enough comparison pages, answers inconclusive and carries no p-value, and that is the honest answer rather than a weak one.

GEThttps://app.softsolz.uk/api/v1/services/seo/sites/{site_id}/experiments

Recent Requests

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

Path Params

site_idstringrequired

Headers

Authorizationstringrequired

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

Response

Response Body

experimentsarray of objectsNewest first.
min_daysintegerThe shortest window that will be reported on.
notestringWhat this design can and cannot show.

Request

import { SoftSolz } from '@softsolz/sdk';
const client = new SoftSolz({ apiKey: process.env.SOFTSOLZ_API_KEY });
const result = await client.seo.listExperiments('<site_id>');
console.log(result);

Credentials

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

Response · 200

{
"data": {
"experiments": [],
"min_days": 0,
"note": "string"
}
}