Get agent compliance detail
curl --request GET \
--url https://agenticadvertising.org/api/registry/agents/{encodedUrl}/complianceimport requests
url = "https://agenticadvertising.org/api/registry/agents/{encodedUrl}/compliance"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://agenticadvertising.org/api/registry/agents/{encodedUrl}/compliance', 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://agenticadvertising.org/api/registry/agents/{encodedUrl}/compliance",
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://agenticadvertising.org/api/registry/agents/{encodedUrl}/compliance"
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://agenticadvertising.org/api/registry/agents/{encodedUrl}/compliance")
.asString();require 'uri'
require 'net/http'
url = URI("https://agenticadvertising.org/api/registry/agents/{encodedUrl}/compliance")
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{
"agent_url": "<string>",
"status": "passing",
"lifecycle_stage": "development",
"compliance_opt_out": true,
"tracks": {},
"streak_days": 123,
"last_checked_at": "<string>",
"last_passed_at": "<string>",
"last_failed_at": "<string>",
"headline": "<string>",
"status_changed_at": "<string>",
"storyboards_passing": 123,
"storyboards_total": 123
}{
"error": "<string>"
}{
"error": "<string>"
}Agent Compliance
Get agent compliance detail
Returns detailed compliance status for a single agent, including track-level results, storyboard counts, and timestamps.
If the agent has opted out of compliance monitoring, returns a minimal response with status: opted_out.
GET
/
api
/
registry
/
agents
/
{encodedUrl}
/
compliance
Get agent compliance detail
curl --request GET \
--url https://agenticadvertising.org/api/registry/agents/{encodedUrl}/complianceimport requests
url = "https://agenticadvertising.org/api/registry/agents/{encodedUrl}/compliance"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://agenticadvertising.org/api/registry/agents/{encodedUrl}/compliance', 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://agenticadvertising.org/api/registry/agents/{encodedUrl}/compliance",
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://agenticadvertising.org/api/registry/agents/{encodedUrl}/compliance"
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://agenticadvertising.org/api/registry/agents/{encodedUrl}/compliance")
.asString();require 'uri'
require 'net/http'
url = URI("https://agenticadvertising.org/api/registry/agents/{encodedUrl}/compliance")
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{
"agent_url": "<string>",
"status": "passing",
"lifecycle_stage": "development",
"compliance_opt_out": true,
"tracks": {},
"streak_days": 123,
"last_checked_at": "<string>",
"last_passed_at": "<string>",
"last_failed_at": "<string>",
"headline": "<string>",
"status_changed_at": "<string>",
"storyboards_passing": 123,
"storyboards_total": 123
}{
"error": "<string>"
}{
"error": "<string>"
}Path Parameters
URL-encoded agent URL
Example:
"https%3A%2F%2Fexample.com%2Fmcp"
Response
Compliance detail
Available options:
passing, degraded, failing, unknown, opted_out Available options:
development, testing, production, deprecated Show child attributes
Show child attributes
Was this page helpful?