curl --request GET \
--url https://api.limitguard.ai/v1/compliance/report/{entity_id}import requests
url = "https://api.limitguard.ai/v1/compliance/report/{entity_id}"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://api.limitguard.ai/v1/compliance/report/{entity_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.limitguard.ai/v1/compliance/report/{entity_id}",
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.limitguard.ai/v1/compliance/report/{entity_id}"
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.limitguard.ai/v1/compliance/report/{entity_id}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.limitguard.ai/v1/compliance/report/{entity_id}")
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_body{
"detail": [
{
"loc": [
"<string>"
],
"msg": "<string>",
"type": "<string>"
}
]
}Compliance Report
De-listed compliance report (#426): answers 410 Gone, charges nothing.
Until #426 this route sold a “full compliance assessment for an entity” at
$0.50, and computed classify_ai_risk("trust_scoring") and
calculate_readiness_score([]) regardless of entity_id — every entity
received byte-identical output, and only the alert summary was even
tenant-scoped. There is no per-entity AI-Act data (system type, deployment
context, data categories) stored anywhere to substitute in, so unlike the
/v1/reputation/history fix in 8cef926 there is nothing real to serve.
Same philosophy as that fix: stop selling data the product does not have.
The route is kept as a tombstone rather than deleted so an agent that still holds the old listing gets a clear, machine-readable answer instead of a bare 404. It is absent from ENDPOINT_PRICING_PREFIXES, so the payment gate never quotes a 402 for it, and it takes no API key because the response reveals nothing. Sandbox callers get the same 410: there is no mock either.
curl --request GET \
--url https://api.limitguard.ai/v1/compliance/report/{entity_id}import requests
url = "https://api.limitguard.ai/v1/compliance/report/{entity_id}"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://api.limitguard.ai/v1/compliance/report/{entity_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.limitguard.ai/v1/compliance/report/{entity_id}",
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.limitguard.ai/v1/compliance/report/{entity_id}"
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.limitguard.ai/v1/compliance/report/{entity_id}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.limitguard.ai/v1/compliance/report/{entity_id}")
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_body{
"detail": [
{
"loc": [
"<string>"
],
"msg": "<string>",
"type": "<string>"
}
]
}Path Parameters
Response
Successful Response