Get a settled Browser observation
curl --request GET \
--url https://api.checkfu.com/v1/computers/{id}/screens/{screen_id}/observations/{observation_id} \
--header 'Authorization: Bearer <token>' \
--header 'checkfu-version: <checkfu-version>'import requests
url = "https://api.checkfu.com/v1/computers/{id}/screens/{screen_id}/observations/{observation_id}"
headers = {
"checkfu-version": "<checkfu-version>",
"Authorization": "Bearer <token>"
}
response = requests.get(url, headers=headers)
print(response.text)const options = {
method: 'GET',
headers: {'checkfu-version': '<checkfu-version>', Authorization: 'Bearer <token>'}
};
fetch('https://api.checkfu.com/v1/computers/{id}/screens/{screen_id}/observations/{observation_id}', 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.checkfu.com/v1/computers/{id}/screens/{screen_id}/observations/{observation_id}",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>",
"checkfu-version: <checkfu-version>"
],
]);
$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.checkfu.com/v1/computers/{id}/screens/{screen_id}/observations/{observation_id}"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("checkfu-version", "<checkfu-version>")
req.Header.Add("Authorization", "Bearer <token>")
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.checkfu.com/v1/computers/{id}/screens/{screen_id}/observations/{observation_id}")
.header("checkfu-version", "<checkfu-version>")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.checkfu.com/v1/computers/{id}/screens/{screen_id}/observations/{observation_id}")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["checkfu-version"] = '<checkfu-version>'
request["Authorization"] = 'Bearer <token>'
response = http.request(request)
puts response.read_body{
"id": "<string>",
"request_fingerprint": "<string>",
"workspace_id": "<string>",
"computer_id": "<string>",
"computer_generation": 1,
"screen_id": "<string>",
"attachment_id": "<string>",
"session_id": "<string>",
"run_id": "<string>",
"run_attempt_id": "<string>",
"acting_principal_id": "<string>",
"control_epoch": 1,
"observation_generation": 1,
"payload": {
"active_target": {
"label": "<string>",
"origin": "<string>",
"title": "<string>",
"viewport": {
"width": 8192,
"height": 8192
}
},
"accessibility_tree": [
{
"key": "<string>",
"parent_key": "<string>",
"role": "<string>",
"accessible_name": "<string>",
"description": "<string>",
"interactive": true,
"disabled": true,
"focused": true,
"masked": true
}
],
"target_summaries": [
{
"label": "<string>",
"origin": "<string>",
"title": "<string>",
"active": true
}
],
"screenshot": {
"file_id": "<string>",
"custody": "ephemeral",
"media_type": "image/png",
"sha256": "<string>",
"bytes": 4194304,
"expires_at": "<string>"
},
"sanitization": {
"policy_digest": "<string>",
"sensitive_fields_excluded": 1,
"hidden_nodes_excluded": 1,
"secret_regions_masked": 1,
"browser_chrome_excluded": true,
"unrelated_targets_excluded": true
},
"truncated": true
},
"payload_digest": "<string>",
"captured_at": "<string>"
}{
"error": {
"type": "validation.malformed",
"message": "<string>",
"more": "https://docs.checkfu.com/reference/errors#validation-malformed"
}
}{
"error": {
"type": "auth.invalid_key",
"message": "<string>",
"more": "https://docs.checkfu.com/reference/errors#auth-invalid-key"
}
}{
"error": {
"type": "auth.disabled_tenancy",
"message": "<string>",
"more": "https://docs.checkfu.com/reference/errors#auth-disabled-tenancy"
}
}{
"error": {
"type": "validation.not_found",
"message": "<string>",
"more": "https://docs.checkfu.com/reference/errors#validation-not-found"
}
}{
"error": {
"type": "budget.exceeded",
"message": "<string>",
"more": "https://docs.checkfu.com/reference/errors#budget-exceeded"
}
}{
"error": {
"type": "runtime.internal",
"message": "<string>",
"more": "https://docs.checkfu.com/reference/errors#runtime-internal"
}
}Get a settled Browser observation
Returns one already-settled, bounded, sanitized Browser observation under its exact Computer and Screen. Raw provider coordinates, screenshot bytes, form values, hidden sensitive fields, browser chrome, and unrelated targets cannot fit the response. A mismatched resource path is not addressable, and an admission that has not settled remains absent.
Checkfu support posture: alpha; hosted. No release evidence journey applies to this operation.
GET
/
v1
/
computers
/
{id}
/
screens
/
{screen_id}
/
observations
/
{observation_id}
Get a settled Browser observation
curl --request GET \
--url https://api.checkfu.com/v1/computers/{id}/screens/{screen_id}/observations/{observation_id} \
--header 'Authorization: Bearer <token>' \
--header 'checkfu-version: <checkfu-version>'import requests
url = "https://api.checkfu.com/v1/computers/{id}/screens/{screen_id}/observations/{observation_id}"
headers = {
"checkfu-version": "<checkfu-version>",
"Authorization": "Bearer <token>"
}
response = requests.get(url, headers=headers)
print(response.text)const options = {
method: 'GET',
headers: {'checkfu-version': '<checkfu-version>', Authorization: 'Bearer <token>'}
};
fetch('https://api.checkfu.com/v1/computers/{id}/screens/{screen_id}/observations/{observation_id}', 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.checkfu.com/v1/computers/{id}/screens/{screen_id}/observations/{observation_id}",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>",
"checkfu-version: <checkfu-version>"
],
]);
$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.checkfu.com/v1/computers/{id}/screens/{screen_id}/observations/{observation_id}"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("checkfu-version", "<checkfu-version>")
req.Header.Add("Authorization", "Bearer <token>")
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.checkfu.com/v1/computers/{id}/screens/{screen_id}/observations/{observation_id}")
.header("checkfu-version", "<checkfu-version>")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.checkfu.com/v1/computers/{id}/screens/{screen_id}/observations/{observation_id}")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["checkfu-version"] = '<checkfu-version>'
request["Authorization"] = 'Bearer <token>'
response = http.request(request)
puts response.read_body{
"id": "<string>",
"request_fingerprint": "<string>",
"workspace_id": "<string>",
"computer_id": "<string>",
"computer_generation": 1,
"screen_id": "<string>",
"attachment_id": "<string>",
"session_id": "<string>",
"run_id": "<string>",
"run_attempt_id": "<string>",
"acting_principal_id": "<string>",
"control_epoch": 1,
"observation_generation": 1,
"payload": {
"active_target": {
"label": "<string>",
"origin": "<string>",
"title": "<string>",
"viewport": {
"width": 8192,
"height": 8192
}
},
"accessibility_tree": [
{
"key": "<string>",
"parent_key": "<string>",
"role": "<string>",
"accessible_name": "<string>",
"description": "<string>",
"interactive": true,
"disabled": true,
"focused": true,
"masked": true
}
],
"target_summaries": [
{
"label": "<string>",
"origin": "<string>",
"title": "<string>",
"active": true
}
],
"screenshot": {
"file_id": "<string>",
"custody": "ephemeral",
"media_type": "image/png",
"sha256": "<string>",
"bytes": 4194304,
"expires_at": "<string>"
},
"sanitization": {
"policy_digest": "<string>",
"sensitive_fields_excluded": 1,
"hidden_nodes_excluded": 1,
"secret_regions_masked": 1,
"browser_chrome_excluded": true,
"unrelated_targets_excluded": true
},
"truncated": true
},
"payload_digest": "<string>",
"captured_at": "<string>"
}{
"error": {
"type": "validation.malformed",
"message": "<string>",
"more": "https://docs.checkfu.com/reference/errors#validation-malformed"
}
}{
"error": {
"type": "auth.invalid_key",
"message": "<string>",
"more": "https://docs.checkfu.com/reference/errors#auth-invalid-key"
}
}{
"error": {
"type": "auth.disabled_tenancy",
"message": "<string>",
"more": "https://docs.checkfu.com/reference/errors#auth-disabled-tenancy"
}
}{
"error": {
"type": "validation.not_found",
"message": "<string>",
"more": "https://docs.checkfu.com/reference/errors#validation-not-found"
}
}{
"error": {
"type": "budget.exceeded",
"message": "<string>",
"more": "https://docs.checkfu.com/reference/errors#budget-exceeded"
}
}{
"error": {
"type": "runtime.internal",
"message": "<string>",
"more": "https://docs.checkfu.com/reference/errors#runtime-internal"
}
}Authorizations
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Headers
Available options:
2026-08-27 Path Parameters
Pattern:
^comp_[0-9a-f]{32}$Pattern:
^scrn_[0-9a-f]{32}$Pattern:
^bobs_[0-9a-f]{32}$Response
A bounded sanitized Browser observation bound to its exact authority and content digest.
Pattern:
^bobs_[0-9a-f]{32}$Pattern:
^sha256:[0-9a-f]{64}$Pattern:
^wrkspc_[0-9a-f]{32}$Pattern:
^comp_[0-9a-f]{32}$Required range:
x > 0Pattern:
^scrn_[0-9a-f]{32}$Pattern:
^catt_[0-9a-f]{32}$Pattern:
^sess_[0-9a-f]{32}$Pattern:
^run_[0-9a-f]{32}$Pattern:
^ratt_[0-9a-f]{32}$Pattern:
^prin_[0-9a-f]{32}$Required range:
x >= 0Required range:
x >= 0Show child attributes
Show child attributes
Pattern:
^sha256:[0-9a-f]{64}$A canonical UTC ISO-8601 timestamp with millisecond precision.
Maximum string length:
24Pattern:
^\d{4}-\d{2}-\d{2}T\d{2}:\d{2}:\d{2}\.\d{3}Z$