Sites / List sites
List sites
GET/v1/sites
Returns the account's sites as a paginated list. Each item has the fields below.
Query parameters
limit
integer
How many to return. Default 100, max 1000.
starting_after
string
A cursor (an item id). Returns the next page after it.
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
curl https://app.converly.io/api/v1/sites \ -H "Authorization: Bearer sk_live_…"
200 OK
{
"data": [
{
"id": "site_29Et…",
"name": "Northwind",
"domain": "https://northwind.com",
"timezone": "America/New_York",
"site_key": "site_1VQH84sr"
}
],
"has_more": false,
"next_cursor": null
}