Get bulk check report
curl --request GET \
--url https://agenticadvertising.org/api/properties/check/bulk/{reportId}import requests
url = "https://agenticadvertising.org/api/properties/check/bulk/{reportId}"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://agenticadvertising.org/api/properties/check/bulk/{reportId}', 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/properties/check/bulk/{reportId}",
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/properties/check/bulk/{reportId}"
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/properties/check/bulk/{reportId}")
.asString();require 'uri'
require 'net/http'
url = URI("https://agenticadvertising.org/api/properties/check/bulk/{reportId}")
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{
"summary": {
"total": 123,
"ready": 123,
"known": 123,
"ad_infra": 123,
"unknown": 123,
"skipped": 123
},
"entries": [
{
"input": "<string>",
"identifier": {
"type": "<string>",
"value": "<string>"
},
"verdict": "<string>",
"classification": "<string>",
"source": "<string>",
"property_rid": "<string>",
"action": "<string>"
}
]
}{
"error": "<string>"
}{
"error": "<string>"
}Property Resolution
Get bulk check report
Retrieve a previously generated bulk property check report by ID.
GET
/
api
/
properties
/
check
/
bulk
/
{reportId}
Get bulk check report
curl --request GET \
--url https://agenticadvertising.org/api/properties/check/bulk/{reportId}import requests
url = "https://agenticadvertising.org/api/properties/check/bulk/{reportId}"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://agenticadvertising.org/api/properties/check/bulk/{reportId}', 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/properties/check/bulk/{reportId}",
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/properties/check/bulk/{reportId}"
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/properties/check/bulk/{reportId}")
.asString();require 'uri'
require 'net/http'
url = URI("https://agenticadvertising.org/api/properties/check/bulk/{reportId}")
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{
"summary": {
"total": 123,
"ready": 123,
"known": 123,
"ad_infra": 123,
"unknown": 123,
"skipped": 123
},
"entries": [
{
"input": "<string>",
"identifier": {
"type": "<string>",
"value": "<string>"
},
"verdict": "<string>",
"classification": "<string>",
"source": "<string>",
"property_rid": "<string>",
"action": "<string>"
}
]
}{
"error": "<string>"
}{
"error": "<string>"
}Was this page helpful?
⌘I