latestSwagger 2.02026-08-1095121164.0 KB

94758829689e

sites

Get Site Information

Retrieves detailed information about a specific Pantheon site.

get/v0/sites/{site_id}

Path parameters

site_idstring required

Site UUID or machine name

Response

createdinteger required

Unix timestamp when site was created

frameworkstring required

Framework used by the site

frozenboolean

Whether the site is frozen

holder_idstring

UUID of the holder entity

holder_typestring

Type of entity holding the site (user or organization)

idstring required

Site UUID

labelstring required

Site display label

last_frozen_atinteger

Unix timestamp when site was last frozen

max_num_multidevsinteger

Maximum number of multidev environments allowed

namestring required

Site machine name

organizationstring

Organization UUID that owns the site

ownerstring

UUID of the site owner

plan_namestring

Site's service plan name

regionstring

Geographic region where the site is hosted

Example response

{
  "created": 1234567890,
  "framework": "drupal8",
  "holder_id": "holder-uuid-456",
  "holder_type": "organization",
  "id": "99f1ccb6-4827-4787-ba84-c2af3ed45cf7",
  "label": "My Awesome Site",
  "last_frozen_at": 1234567890,
  "max_num_multidevs": 10,
  "name": "my-site",
  "organization": "org-uuid-123",
  "owner": "owner-uuid-789",
  "plan_name": "free",
  "region": "United States",
  "upstream": {
    "id": "drupal-recommended",
    "label": "Drupal (Latest Version)",
    "url": "https://github.com/pantheon-upstreams/drupal-recommended"
  }
}