Skip to content
Start in Cloud

Shared Web Vitals timeseries

GET
/api/share/{token}/sites/{id}/web-vitals/timeseries
curl --request GET \
--url 'https://hitkeep.com/api/share/example/sites/2489E9AD-2EE2-8E00-8EC9-32D5F69181C0/web-vitals/timeseries?rating=good&metric=LCP'

Returns Web Vitals timeseries through a read-only share token.

token
required
string
id
required
string format: uuid
from
string format: date-time
to
string format: date-time
path
string

Exact normalized page path.

rating
string
Allowed values: good needs_improvement poor

Web Vital threshold rating.

metric
required
string
Allowed values: LCP INP CLS FCP TTFB

Web Vital metric.

Web Vitals timeseries

Media type application/json
Array<object>
object
time
string format: date-time
p75
number
samples
integer
good
integer
needs_improvement
integer
poor
integer
Example generated
[
{
"time": "2026-04-15T12:00:00Z",
"p75": 1,
"samples": 1,
"good": 1,
"needs_improvement": 1,
"poor": 1
}
]