Sites  /  Get site

Get site

GET/v1/sites/{id}

Retrieve a single site.

Path parameters
id
string · required
The site id.
Response fields
id
string
Prefixed identifier, e.g. site_29Et…. Use this in URLs.
name
string
Human-friendly label. Defaults to My Website.
domain
string | null
Canonical origin, e.g. https://northwind.com. null until set.
timezone
string
IANA timezone. Defaults to America/New_York.
site_key
string
Short public key used in the install snippet. Not the same as id.
created_at
timestamp
When the site was created.
GET/v1/sites/{id}
curl https://app.converly.io/api/v1/sites/site_29Et… \
  -H "Authorization: Bearer sk_live_…"
200 OK
{
  "id": "site_29Et…",
  "name": "Northwind",
  "domain": "https://northwind.com",
  "timezone": "America/New_York",
  "site_key": "site_1VQH84sr"
}