Sites / Get install status
Get install status
GET/v1/sites/{id}/install-status
Reports whether Converly has seen the loader on the site yet. Useful for polling an onboarding checklist. This is an early endpoint, detection is still being rolled out, so treat installed: false as not-yet-confirmed rather than definitely absent.
Path parameters
id
string · required
The site id.
Response fields
installed
boolean
True once the loader has been seen on the site.
last_seen_at
timestamp | null
When the loader was last seen, or null.
detection
string
Detection state, e.g. pending.
GET/v1/sites/{id}/install-status
curl https://app.converly.io/api/v1/sites/site_29Et…/install-status \ -H "Authorization: Bearer sk_live_…"
200 OK
{
"installed": false,
"last_seen_at": null,
"detection": "pending"
}