List policies
curl --request GET \
--url https://agenticadvertising.org/api/policies/registryimport requests
url = "https://agenticadvertising.org/api/policies/registry"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://agenticadvertising.org/api/policies/registry', 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/policies/registry",
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/policies/registry"
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/policies/registry")
.asString();require 'uri'
require 'net/http'
url = URI("https://agenticadvertising.org/api/policies/registry")
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{
"policies": [
{
"policy_id": "gdpr_consent",
"version": "1.0.0",
"name": "GDPR Consent Requirements",
"description": "Requirements for valid consent under GDPR",
"jurisdictions": [
"EU",
"EEA"
],
"region_aliases": {
"EU": [
"DE",
"FR",
"IT"
]
},
"policy_categories": [
"age_restricted",
"pharmaceutical_advertising"
],
"channels": [
"display",
"video"
],
"governance_domains": [
"campaign",
"creative"
],
"effective_date": "2025-05-25T00:00:00.000Z",
"sunset_date": "<string>",
"source_url": "https://eur-lex.europa.eu/eli/reg/2016/679/oj",
"source_name": "EUR-Lex",
"created_at": "2026-03-01T12:00:00.000Z",
"updated_at": "2026-03-01T12:00:00.000Z"
}
],
"stats": {
"total": 123,
"regulation": 123,
"standard": 123
}
}Policy Registry
List policies
Browse and search the governance policy registry. Returns approved policies with optional filtering by category, enforcement level, jurisdiction, policy category, and governance domain.
GET
/
api
/
policies
/
registry
List policies
curl --request GET \
--url https://agenticadvertising.org/api/policies/registryimport requests
url = "https://agenticadvertising.org/api/policies/registry"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://agenticadvertising.org/api/policies/registry', 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/policies/registry",
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/policies/registry"
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/policies/registry")
.asString();require 'uri'
require 'net/http'
url = URI("https://agenticadvertising.org/api/policies/registry")
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{
"policies": [
{
"policy_id": "gdpr_consent",
"version": "1.0.0",
"name": "GDPR Consent Requirements",
"description": "Requirements for valid consent under GDPR",
"jurisdictions": [
"EU",
"EEA"
],
"region_aliases": {
"EU": [
"DE",
"FR",
"IT"
]
},
"policy_categories": [
"age_restricted",
"pharmaceutical_advertising"
],
"channels": [
"display",
"video"
],
"governance_domains": [
"campaign",
"creative"
],
"effective_date": "2025-05-25T00:00:00.000Z",
"sunset_date": "<string>",
"source_url": "https://eur-lex.europa.eu/eli/reg/2016/679/oj",
"source_name": "EUR-Lex",
"created_at": "2026-03-01T12:00:00.000Z",
"updated_at": "2026-03-01T12:00:00.000Z"
}
],
"stats": {
"total": 123,
"regulation": 123,
"standard": 123
}
}Query Parameters
Full-text search on policy name and description
Available options:
regulation, standard Available options:
must, should, may Filter by jurisdiction (includes region alias matching)
Example:
"EU"
Example:
"age_restricted"
Filter by governance domain
Example:
"campaign"
Results per page (default 20, max 1000)
Pagination offset (default 0)
Was this page helpful?
⌘I