Get a ComputerProfileVersion
curl --request GET \
--url https://api.checkfu.com/v1/computer-profiles/{id}/versions/{version} \
--header 'Authorization: Bearer <token>' \
--header 'checkfu-version: <checkfu-version>'import requests
url = "https://api.checkfu.com/v1/computer-profiles/{id}/versions/{version}"
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/computer-profiles/{id}/versions/{version}', 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/computer-profiles/{id}/versions/{version}",
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/computer-profiles/{id}/versions/{version}"
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/computer-profiles/{id}/versions/{version}")
.header("checkfu-version", "<checkfu-version>")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.checkfu.com/v1/computer-profiles/{id}/versions/{version}")
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{
"profile_id": "<string>",
"workspace_id": "<string>",
"version": 1,
"requirements_schema_version": 1,
"normalized_requirements": {
"schema_version": 1,
"execution": [
"shell"
],
"lifetime": "run",
"presentation": "none",
"human_access": "none",
"placement": [
"managed"
],
"isolation": {
"filesystem": "attachment",
"browser_profile": "attachment",
"process_namespace": "attachment",
"credentials": "grant_bound",
"clipboard": "disabled",
"downloads": "attachment"
},
"recovery": "none",
"retention": {
"mode": "ephemeral_zdr",
"maximum_seconds": 157680000,
"export": "forbidden"
},
"network": {
"mode": "none",
"policy": {
"action_policy_id": "<string>",
"action_policy_version": 1
}
},
"locality": {
"regions": [
"<string>"
],
"residency_required": true
},
"resources": {
"minimum_vcpu": 512,
"minimum_memory_mib": 2097152,
"minimum_disk_mib": 536870912,
"gpu": "forbidden"
}
},
"environment_snapshot": {
"environment_id": "<string>",
"version": 1
},
"platform": {
"os_family": "<string>",
"architecture": "<string>"
},
"image": {
"reference": "<string>",
"image_digest": "<string>"
},
"screen_policy": {
"maximum_screens": 8,
"default_width": 8192,
"default_height": 8192,
"maximum_viewers_per_screen": 32
},
"lifecycle": {
"idle_sleep_seconds": 157680000,
"maximum_active_seconds": 157680000
},
"content_sha256": "<string>",
"created_by_principal_id": "<string>",
"created_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 ComputerProfileVersion
Returns one immutable complete ComputerProfileVersion by profile ID and positive version number, including its canonical content digest and author. This structural read contains no private provider coordinates or credentials.
Checkfu support posture: alpha; hosted. No release evidence journey applies to this operation.
GET
/
v1
/
computer-profiles
/
{id}
/
versions
/
{version}
Get a ComputerProfileVersion
curl --request GET \
--url https://api.checkfu.com/v1/computer-profiles/{id}/versions/{version} \
--header 'Authorization: Bearer <token>' \
--header 'checkfu-version: <checkfu-version>'import requests
url = "https://api.checkfu.com/v1/computer-profiles/{id}/versions/{version}"
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/computer-profiles/{id}/versions/{version}', 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/computer-profiles/{id}/versions/{version}",
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/computer-profiles/{id}/versions/{version}"
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/computer-profiles/{id}/versions/{version}")
.header("checkfu-version", "<checkfu-version>")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.checkfu.com/v1/computer-profiles/{id}/versions/{version}")
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{
"profile_id": "<string>",
"workspace_id": "<string>",
"version": 1,
"requirements_schema_version": 1,
"normalized_requirements": {
"schema_version": 1,
"execution": [
"shell"
],
"lifetime": "run",
"presentation": "none",
"human_access": "none",
"placement": [
"managed"
],
"isolation": {
"filesystem": "attachment",
"browser_profile": "attachment",
"process_namespace": "attachment",
"credentials": "grant_bound",
"clipboard": "disabled",
"downloads": "attachment"
},
"recovery": "none",
"retention": {
"mode": "ephemeral_zdr",
"maximum_seconds": 157680000,
"export": "forbidden"
},
"network": {
"mode": "none",
"policy": {
"action_policy_id": "<string>",
"action_policy_version": 1
}
},
"locality": {
"regions": [
"<string>"
],
"residency_required": true
},
"resources": {
"minimum_vcpu": 512,
"minimum_memory_mib": 2097152,
"minimum_disk_mib": 536870912,
"gpu": "forbidden"
}
},
"environment_snapshot": {
"environment_id": "<string>",
"version": 1
},
"platform": {
"os_family": "<string>",
"architecture": "<string>"
},
"image": {
"reference": "<string>",
"image_digest": "<string>"
},
"screen_policy": {
"maximum_screens": 8,
"default_width": 8192,
"default_height": 8192,
"maximum_viewers_per_screen": 32
},
"lifecycle": {
"idle_sleep_seconds": 157680000,
"maximum_active_seconds": 157680000
},
"content_sha256": "<string>",
"created_by_principal_id": "<string>",
"created_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-31 Path Parameters
Pattern:
^cprof_[0-9a-f]{32}$Required range:
x >= 1Response
An immutable complete provider-neutral Computer profile revision bound to its canonical content digest.
Pattern:
^cprof_[0-9a-f]{32}$Pattern:
^wrkspc_[0-9a-f]{32}$Required range:
x > 0Available options:
1 Show child attributes
Show child attributes
Show child attributes
Show child attributes
Show child attributes
Show child attributes
Show child attributes
Show child attributes
Show child attributes
Show child attributes
Show child attributes
Show child attributes
Pattern:
^sha256:[0-9a-f]{64}$Pattern:
^prin_[0-9a-f]{32}$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$