Retrieve the changes to a score over time, for a given website or website section.
GET /v1/results/score-trend
scoreId
string, required
The ID of the score you wish to retrieve. For a list, see get all scores.
You must also provide the standard result arguments.
All scores are provided as an integer or null, where they are not known.
{
"result": {
"scores": [
{
"time": 1704335552,
"score": 34
},
{
"time": 1704594628,
"score": 39
}
]
}
}
time
integer
The time of the score.
score
integer or null
The score, or null if it was unknown at that time.