curl --request GET \
--url https://api.blindsight.example.com/api/runtime-security/config \
--header 'X-API-Key: <api-key>'import requests
url = "https://api.blindsight.example.com/api/runtime-security/config"
headers = {"X-API-Key": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {'X-API-Key': '<api-key>'}};
fetch('https://api.blindsight.example.com/api/runtime-security/config', 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.blindsight.example.com/api/runtime-security/config",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"X-API-Key: <api-key>"
],
]);
$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.blindsight.example.com/api/runtime-security/config"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("X-API-Key", "<api-key>")
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.blindsight.example.com/api/runtime-security/config")
.header("X-API-Key", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.blindsight.example.com/api/runtime-security/config")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["X-API-Key"] = '<api-key>'
response = http.request(request)
puts response.read_body{
"enabled": true,
"block_threshold": 0.85,
"redact_threshold": 0.55,
"max_text_length": 32000,
"log_events": true,
"pre_prompt": "<string>",
"pre_prompt_placement": "prepend",
"agentic": {
"tool_allowlist": [
"<string>"
],
"tool_denylist": [
"<string>"
],
"max_arg_bytes": 32000,
"allow_private_network": false
},
"file_scanning_enabled": true,
"file_unredactable_action": "block",
"pseudonymize_enabled": false,
"pseudonymize_labels": {},
"pseudonymize_retention_days": 30,
"dlp_fail_mode": "open",
"dlp_fail_mode_locked": false,
"dlp_protect_unsanctioned": false,
"dlp_host_rule_overrides": [
{}
]
}Read current workspace settings
curl --request GET \
--url https://api.blindsight.example.com/api/runtime-security/config \
--header 'X-API-Key: <api-key>'import requests
url = "https://api.blindsight.example.com/api/runtime-security/config"
headers = {"X-API-Key": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {'X-API-Key': '<api-key>'}};
fetch('https://api.blindsight.example.com/api/runtime-security/config', 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.blindsight.example.com/api/runtime-security/config",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"X-API-Key: <api-key>"
],
]);
$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.blindsight.example.com/api/runtime-security/config"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("X-API-Key", "<api-key>")
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.blindsight.example.com/api/runtime-security/config")
.header("X-API-Key", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.blindsight.example.com/api/runtime-security/config")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["X-API-Key"] = '<api-key>'
response = http.request(request)
puts response.read_body{
"enabled": true,
"block_threshold": 0.85,
"redact_threshold": 0.55,
"max_text_length": 32000,
"log_events": true,
"pre_prompt": "<string>",
"pre_prompt_placement": "prepend",
"agentic": {
"tool_allowlist": [
"<string>"
],
"tool_denylist": [
"<string>"
],
"max_arg_bytes": 32000,
"allow_private_network": false
},
"file_scanning_enabled": true,
"file_unredactable_action": "block",
"pseudonymize_enabled": false,
"pseudonymize_labels": {},
"pseudonymize_retention_days": 30,
"dlp_fail_mode": "open",
"dlp_fail_mode_locked": false,
"dlp_protect_unsanctioned": false,
"dlp_host_rule_overrides": [
{}
]
}Authorizations
Blindsight workspace API key (ak_live_…). Use this header for the
scan API and the OpenAI proxy routes. The required permission
scope is runtime_security.scan for scan endpoints,
runtime_security.view for read-only analytics, and
runtime_security.manage for configuration changes.
Response
Current settings
0 <= x <= 10 <= x <= 1256 <= x <= 20000020000prepend, append, sandwich Show child attributes
Show child attributes
Scan file uploads as well as prompt text.
What happens when a file contains PII or secrets and its format has no in-file redactor.
block, allow Replace detected values with reversible surrogates instead of a placeholder, so the reply can be restored on the way back.
Per-label overrides for which categories are pseudonymized.
How long a surrogate stays resolvable back to its value.
What the endpoint agent does when it cannot reach this API. closed stops the traffic it cannot get a verdict for.
open, closed Prevents a device changing its own fail mode.
Inspect and pseudonymize traffic to AI services nobody has approved, rather than blocking them.
Per-host rules that override the built-in AI host list, each naming a host pattern, how to match it, and what to do.

