SoftSolzSoftSolz
HomeAPI GuideAPI ReferenceWidget Tester
seo

Real-user page speed, per origin and per page.

Figures from the Chrome UX Report, which is what Google actually measures. A page with too few real visits returns sample_note "insufficient_data": that is not a pass and not a fail, and must never be reported as either.

GEThttps://app.softsolz.uk/api/v1/services/seo/sites/{site_id}/web-vitals

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

configuredbooleanFalse when page speed data is not switched on for this environment.
thresholdsobjectThe thresholds a pass is measured against.
rowsarray of objectsLatest figure per origin, page and form factor.
notestringThe honesty note about missing data.

Request

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

Credentials

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

Response · 200

{
"data": {
"configured": true,
"thresholds": {},
"rows": [],
"note": "string"
}
}