API Documentation

List Webspaces

List all webspaces accessible to the API key.

Required scope: webspace:read

Headers

Header Required Value
Authorization Yes Bearer YOUR_API_KEY

Response

{
  "data": [
    {
      "id": "69e80ac118f081032f3b0416",
      "name": "My Blog",
      "subdomain": "my-blog.sitequest.eu",
      "customDomain": null,
      "status": "ACTIVE",
      "cms": "WORDPRESS",
      "cmsVersion": "6.5",
      "phpVersion": "8.3",
      "isFree": false,
      "region": "eu-central",
      "diskSpaceGb": 5,
      "diskUsageGb": 0.42,
      "bandwidthGb": 100,
      "bandwidthUsageGb": 1.25,
      "databases": 10,
      "databasesUsed": 1,
      "linkedDomains": 1,
      "createdAt": "2026-04-01T12:34:56.000Z"
    }
  ]
}

Response Fields

Field Type Description
id string Webspace identifier.
subdomain string The *.sitequest.eu hostname assigned to the webspace.
status string ACTIVE, SUSPENDED, INSTALLING, FAILED.
cms string Installed CMS: STATIC, WORDPRESS, JOOMLA, DRUPAL, TYPO3.
phpVersion string Active PHP version (8.18.5).
isFree boolean true if claimed via the free-tier endpoint.
diskSpaceGb / bandwidthGb number Allocated disk space and monthly bandwidth in GB.
diskUsageGb / bandwidthUsageGb number Cached usage counters in GB.

Example

curl https://hosting.site.quest/api/v1/webspaces \
  -H "Authorization: Bearer sq_live_..."

MCP

This action is also available via the list_webspaces MCP tool.