Get SEO score
<Info>This API is in beta. Endpoints, fields, and behavior may still change, so avoid depending on it in production.</Info>
Returns the score from the app's last SEO scan, without the checklist behind it.
This endpoint retrieves the score from a scan that already ran. It doesn't run a new scan itself. It returns null until the app has been scanned at least once, so run Run SEO scan first if you haven't. Use Get last SEO scan when you need the individual checks.
The score and the checklist are stored separately, and two scans running at once can interleave those two writes. So compare scanned_at with the one Get last SEO scan returns before treating the two as one scan's.
<Warning>The response includes fields beyond the ones documented here. Don't rely on undocumented response fields, as they can change at any time.</Warning>
Path parameters
ID of the app.
ID of the app.
Response
The last scan's score, or null if the app has never been scanned.
Example response
{
"result": {
"overall": 82,
"grade": "B",
"failures": 2,
"warnings": 3,
"scanned_at": "2026-09-03T09:15:00+00:00"
}
}Changes
No recorded changes to this endpoint across all 14 revisions of this API.