/tenant/siteDetailsFetch a site's configuration via the public Client API — theme colors, logo, hero image, business info, and page configs (including each page's collection binding). Requires an API key.
| Name | Type | Required | Description |
|---|---|---|---|
| siteId | string | required | Site identifier |
{
"success": true,
"data": {
"siteDetails": {
"values": {
"businessInfo": {
"name": "My Store"
},
"logo": {
"currentFile": {
"source": "https://cdn.vivreal.io/..."
}
},
"pages": []
}
}
}
}curl -X GET "https://client.vivreal.io/tenant/siteDetails?siteId=your_siteId" \ -H "Authorization: Bearer YOUR_API_KEY"
Response will appear here