Skip to main content
GET
/
api
/
registry
/
agents
/
{encodedUrl}
/
compliance
Get agent compliance detail
curl --request GET \
  --url https://agenticadvertising.org/api/registry/agents/{encodedUrl}/compliance
import 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>",
  "requested_compliance_target": "<string>",
  "adcp_version": "<string>",
  "compliance_opt_out": true,
  "tracks": {},
  "track_details": [
    {
      "track": "<string>",
      "status": "<string>",
      "scenario_count": 123,
      "passed_count": 123,
      "duration_ms": 123,
      "has_coverage_gap_skip": true
    }
  ],
  "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,
  "check_interval_hours": 123,
  "declared_specialisms": [
    "<string>"
  ],
  "specialism_status": {},
  "storyboard_statuses": [
    {
      "storyboard_id": "<string>",
      "title": "<string>",
      "category": "<string>",
      "track": "<string>",
      "steps_passed": 123,
      "steps_total": 123,
      "failure_count": 123,
      "skipped_count": 123,
      "first_failed_step_id": "<string>",
      "first_failed_step_title": "<string>",
      "first_failed_step_task": "<string>",
      "first_failure_message": "<string>",
      "last_tested_at": "<string>",
      "last_passed_at": "<string>",
      "requested_compliance_target": "<string>",
      "adcp_version": "<string>"
    }
  ],
  "notices": [
    "<unknown>"
  ],
  "observations": [
    {
      "category": "<string>",
      "severity": "<string>",
      "message": "<string>"
    }
  ],
  "membership_tier": "<string>",
  "membership_tier_label": "<string>",
  "subscription_status": "<string>",
  "is_api_access_tier": true,
  "verified": true,
  "verified_badges": [
    {
      "adcp_version": "<string>",
      "verified_at": "<string>",
      "verified_specialisms": [],
      "verification_modes": [],
      "verified_protocol_version": "<string>",
      "badge_url": "<string>"
    }
  ]
}
{
"error": "<string>"
}
{
"error": "<string>"
}

Path Parameters

encodedUrl
string
required

URL-encoded agent URL

Example:

"https%3A%2F%2Fexample.com%2Fmcp"

Response

Compliance detail

agent_url
string
required
status
enum<string>
required
Available options:
passing,
degraded,
failing,
unknown,
opted_out
lifecycle_stage
enum<string>
required
Available options:
development,
testing,
production,
deprecated
requested_compliance_target
string | null

Requested compliance target before alias resolution, e.g. 3.0 or 3.1-beta. Null for legacy rows before target recording.

adcp_version
string | null

Concrete AdCP compliance bundle version used for the latest run, e.g. 3.0.12. Null for legacy rows before version recording.

compliance_opt_out
boolean
tracks
object
track_details
object[]

Latest-run per-track summary. Skipped tracks with has_coverage_gap_skip=true represent selected coverage gaps, such as missing_test_controller.

streak_days
integer
last_checked_at
string | null
last_passed_at
string | null
last_failed_at
string | null
headline
string | null
status_changed_at
string | null
storyboards_passing
integer
storyboards_total
integer
check_interval_hours
integer

How often the heartbeat re-tests this agent, in hours

declared_specialisms
string[]

Specialisms the agent declared in get_adcp_capabilities, from the latest run

specialism_status
object

Per-specialism pass/fail/untested status — keyed on declared specialism, derived from the matching storyboard's status

storyboard_statuses
object[]

Owner-scoped per-storyboard diagnostics used by the dashboard. Empty for non-owners.

notices
any[]

Run-summary notices from the latest non-dry-run compliance run. Unknown codes/severities are preserved verbatim.

observations
object[]

Public-safe advisory observations from the latest non-dry-run compliance run. Raw evidence is intentionally omitted; this array is not merged across runs, so cleared advisories disappear on the next fresh run.

membership_tier
string | null

Owner-scoped: the agent owner's membership tier. Populated only when the authenticated viewer owns the agent; null otherwise. Field is always present so response shape doesn't reveal ownership.

membership_tier_label
string | null

Owner-scoped: human-readable label for membership_tier (e.g. 'Builder'). Null for non-owners.

subscription_status
string | null

Owner-scoped: the agent owner's subscription status (active, past_due, trialing, etc.). Null for non-owners.

is_api_access_tier
boolean

Owner-scoped: true when the owner's tier and subscription status grant badge eligibility. False for non-owners. Single source of truth — UI should not re-derive.

verdict_source
enum<string> | null

Owner-scoped: triggered_by value of the most recent non-dry-run compliance check. Null for non-owners and when no run has been recorded. Operators use this as a UX cue ('did this verdict come from my recent test or the system heartbeat?').

Available options:
heartbeat,
owner_test,
manual,
webhook,
null
verified
boolean
verified_badges
object[]