curl --request POST \
--url https://agenticadvertising.org/api/registry/verify/supply-path \
--header 'Content-Type: application/json' \
--data '
{
"owner_domain": "<string>",
"host_domain": "<string>",
"agent_url": "<string>",
"collection_id": "<string>"
}
'import requests
url = "https://agenticadvertising.org/api/registry/verify/supply-path"
payload = {
"owner_domain": "<string>",
"host_domain": "<string>",
"agent_url": "<string>",
"collection_id": "<string>"
}
headers = {"Content-Type": "application/json"}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {'Content-Type': 'application/json'},
body: JSON.stringify({
owner_domain: '<string>',
host_domain: '<string>',
agent_url: '<string>',
collection_id: '<string>'
})
};
fetch('https://agenticadvertising.org/api/registry/verify/supply-path', 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/verify/supply-path",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => json_encode([
'owner_domain' => '<string>',
'host_domain' => '<string>',
'agent_url' => '<string>',
'collection_id' => '<string>'
]),
CURLOPT_HTTPHEADER => [
"Content-Type: application/json"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://agenticadvertising.org/api/registry/verify/supply-path"
payload := strings.NewReader("{\n \"owner_domain\": \"<string>\",\n \"host_domain\": \"<string>\",\n \"agent_url\": \"<string>\",\n \"collection_id\": \"<string>\"\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.post("https://agenticadvertising.org/api/registry/verify/supply-path")
.header("Content-Type", "application/json")
.body("{\n \"owner_domain\": \"<string>\",\n \"host_domain\": \"<string>\",\n \"agent_url\": \"<string>\",\n \"collection_id\": \"<string>\"\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://agenticadvertising.org/api/registry/verify/supply-path")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["Content-Type"] = 'application/json'
request.body = "{\n \"owner_domain\": \"<string>\",\n \"host_domain\": \"<string>\",\n \"agent_url\": \"<string>\",\n \"collection_id\": \"<string>\"\n}"
response = http.request(request)
puts response.read_body{
"state": "verified_owner_sold",
"legs": {
"owner_collection_declared": {
"ok": true,
"failure": "<string>",
"detail": "<string>"
},
"owner_distribution_carriage": {
"ok": true,
"failure": "<string>",
"detail": "<string>"
},
"owner_agent_declared": {
"ok": true,
"failure": "<string>",
"detail": "<string>"
},
"host_authorization": {
"ok": true,
"failure": "<string>",
"detail": "<string>"
},
"inventory_partner_domain": {
"ok": true,
"failure": "<string>",
"detail": "<string>"
}
},
"owner_domain": "<string>",
"host_domain": "<string>",
"agent_url": "<string>",
"sources": {
"owner_adagents_url": "<string>",
"host_adagents_url": "<string>",
"cached": true
},
"checked_at": "<string>",
"collection_id": "<string>"
}Verify an owner-sold supply path
Joins the owner’s and host’s cached adagents.json manifests (plus the host’s ads.txt/app-ads.txt inventorypartnerdomain lines when needed) and returns the verification state of one owner-sold carriage path, leg by leg. States follow the documented ladder: verified_owner_sold (host adagents.json authorizes the agent for the host property, collection-scoped), host_delegated (ads.txt inventorypartnerdomain + owner-side declarations, policy-gated), owner_attested (owner distribution claim only — discovery, never authorization), unverified. The response is evidence-bearing so callers can reproduce the verdict from the authoritative files; the registry cache is a convenience, not the trust root. For a live-fetch check of a file you just changed, use POST /api/adagents/validate.
curl --request POST \
--url https://agenticadvertising.org/api/registry/verify/supply-path \
--header 'Content-Type: application/json' \
--data '
{
"owner_domain": "<string>",
"host_domain": "<string>",
"agent_url": "<string>",
"collection_id": "<string>"
}
'import requests
url = "https://agenticadvertising.org/api/registry/verify/supply-path"
payload = {
"owner_domain": "<string>",
"host_domain": "<string>",
"agent_url": "<string>",
"collection_id": "<string>"
}
headers = {"Content-Type": "application/json"}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {'Content-Type': 'application/json'},
body: JSON.stringify({
owner_domain: '<string>',
host_domain: '<string>',
agent_url: '<string>',
collection_id: '<string>'
})
};
fetch('https://agenticadvertising.org/api/registry/verify/supply-path', 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/verify/supply-path",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => json_encode([
'owner_domain' => '<string>',
'host_domain' => '<string>',
'agent_url' => '<string>',
'collection_id' => '<string>'
]),
CURLOPT_HTTPHEADER => [
"Content-Type: application/json"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://agenticadvertising.org/api/registry/verify/supply-path"
payload := strings.NewReader("{\n \"owner_domain\": \"<string>\",\n \"host_domain\": \"<string>\",\n \"agent_url\": \"<string>\",\n \"collection_id\": \"<string>\"\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.post("https://agenticadvertising.org/api/registry/verify/supply-path")
.header("Content-Type", "application/json")
.body("{\n \"owner_domain\": \"<string>\",\n \"host_domain\": \"<string>\",\n \"agent_url\": \"<string>\",\n \"collection_id\": \"<string>\"\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://agenticadvertising.org/api/registry/verify/supply-path")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["Content-Type"] = 'application/json'
request.body = "{\n \"owner_domain\": \"<string>\",\n \"host_domain\": \"<string>\",\n \"agent_url\": \"<string>\",\n \"collection_id\": \"<string>\"\n}"
response = http.request(request)
puts response.read_body{
"state": "verified_owner_sold",
"legs": {
"owner_collection_declared": {
"ok": true,
"failure": "<string>",
"detail": "<string>"
},
"owner_distribution_carriage": {
"ok": true,
"failure": "<string>",
"detail": "<string>"
},
"owner_agent_declared": {
"ok": true,
"failure": "<string>",
"detail": "<string>"
},
"host_authorization": {
"ok": true,
"failure": "<string>",
"detail": "<string>"
},
"inventory_partner_domain": {
"ok": true,
"failure": "<string>",
"detail": "<string>"
}
},
"owner_domain": "<string>",
"host_domain": "<string>",
"agent_url": "<string>",
"sources": {
"owner_adagents_url": "<string>",
"host_adagents_url": "<string>",
"cached": true
},
"checked_at": "<string>",
"collection_id": "<string>"
}Body
Channel owner's publisher domain — where the canonical collection is declared.
1Host publisher domain — where the carrying property (e.g. CTV app) is declared.
1Sales agent URL the buyer would transact with. Canonicalized server-side.
1Owner-assigned collection ID. Omit to verify the path at domain level (bulk deals).
1Response
Supply-path verification verdict with per-leg evidence
verified_owner_sold, host_delegated, owner_attested, unverified Show child attributes
Show child attributes
Show child attributes
Show child attributes