Get Surface
curl --request GET \
--url https://api.example.com/v0/surfaces/{publicId}import requests
url = "https://api.example.com/v0/surfaces/{publicId}"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://api.example.com/v0/surfaces/{publicId}', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.example.com/v0/surfaces/{publicId}",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://api.example.com/v0/surfaces/{publicId}"
req, _ := http.NewRequest("GET", url, nil)
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://api.example.com/v0/surfaces/{publicId}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.example.com/v0/surfaces/{publicId}")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
response = http.request(request)
puts response.read_bodySurfaces
Get Surface
GET /v0/surfaces/ — Read Surface configuration and revision pointers.
GET
/
v0
/
surfaces
/
{publicId}
Get Surface
curl --request GET \
--url https://api.example.com/v0/surfaces/{publicId}import requests
url = "https://api.example.com/v0/surfaces/{publicId}"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://api.example.com/v0/surfaces/{publicId}', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.example.com/v0/surfaces/{publicId}",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://api.example.com/v0/surfaces/{publicId}"
req, _ := http.NewRequest("GET", url, nil)
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://api.example.com/v0/surfaces/{publicId}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.example.com/v0/surfaces/{publicId}")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
response = http.request(request)
puts response.read_bodyRead one Surface as a current configurator. Personal owners and team owners/admins can use this endpoint.
{
"ok": true,
"data": {
"publicId": "f0c10000-0000-4000-8000-000000000001",
"ownerId": "rip1owner",
"title": "Lead triage",
"description": null,
"mountId": "a7c10000-0000-4000-8000-000000000001",
"sourceTemplateAlias": null,
"agent": { "slug": "demand-scout", "displayName": "Demand Scout" },
"bindings": {},
"status": "published",
"draftRevisionId": "d58c0000-0000-4000-8000-000000000001",
"publishedRevisionId": "c47b0000-0000-4000-8000-000000000001",
"requiresRevalidation": false,
"currentRevision": {
"id": "d58c0000-0000-4000-8000-000000000001",
"bundleVersionId": null,
"createdAt": "2026-09-09T12:00:00.000Z",
"htmlContent": "<!doctype html><html>...</html>"
},
"lastValidation": null,
"changedSinceValidation": false
}
}
currentRevision is the current draft projection. For compatibility revisions it includes htmlContent. Internal package-backed revisions can omit HTML and instead expose bundleVersionId. The exact live revision is identified by publishedRevisionId.
Unauthorized current configurators receive 403 SURFACE_CONFIGURE_FORBIDDEN; deleted or missing Surfaces return 404 SURFACE_NOT_FOUND.