curl --request POST \
--url https://agenticadvertising.org/api/registry/resolve \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"identifiers": [
{
"type": "domain",
"value": "nytimes.com"
}
],
"provenance": {
"context": "unilever_q3"
},
"mode": "resolve"
}
'import requests
url = "https://agenticadvertising.org/api/registry/resolve"
payload = {
"identifiers": [
{
"type": "domain",
"value": "nytimes.com"
}
],
"provenance": { "context": "unilever_q3" },
"mode": "resolve"
}
headers = {
"Authorization": "Bearer <token>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {Authorization: 'Bearer <token>', 'Content-Type': 'application/json'},
body: JSON.stringify({
identifiers: [{type: 'domain', value: 'nytimes.com'}],
provenance: {context: 'unilever_q3'},
mode: 'resolve'
})
};
fetch('https://agenticadvertising.org/api/registry/resolve', 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/resolve",
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([
'identifiers' => [
[
'type' => 'domain',
'value' => 'nytimes.com'
]
],
'provenance' => [
'context' => 'unilever_q3'
],
'mode' => 'resolve'
]),
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>",
"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/resolve"
payload := strings.NewReader("{\n \"identifiers\": [\n {\n \"type\": \"domain\",\n \"value\": \"nytimes.com\"\n }\n ],\n \"provenance\": {\n \"context\": \"unilever_q3\"\n },\n \"mode\": \"resolve\"\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("Authorization", "Bearer <token>")
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/resolve")
.header("Authorization", "Bearer <token>")
.header("Content-Type", "application/json")
.body("{\n \"identifiers\": [\n {\n \"type\": \"domain\",\n \"value\": \"nytimes.com\"\n }\n ],\n \"provenance\": {\n \"context\": \"unilever_q3\"\n },\n \"mode\": \"resolve\"\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://agenticadvertising.org/api/registry/resolve")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["Authorization"] = 'Bearer <token>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"identifiers\": [\n {\n \"type\": \"domain\",\n \"value\": \"nytimes.com\"\n }\n ],\n \"provenance\": {\n \"context\": \"unilever_q3\"\n },\n \"mode\": \"resolve\"\n}"
response = http.request(request)
puts response.read_body{
"resolved": [
{
"identifier": {
"type": "domain",
"value": "nytimes.com"
},
"property_rid": "<string>",
"classification": "property",
"source": "<string>"
}
],
"summary": {
"total": 123,
"resolved": 123,
"created": 123,
"excluded": 123,
"not_found": 123
},
"server_timestamp": "<string>"
}{
"error": "<string>"
}{
"error": "<string>"
}Resolve identifiers to property_rids (and contribute them)
The primary fact-contribution path. Takes identifiers plus a provenance envelope and returns stable property_rids. In resolve mode (default) it auto-creates missing catalog entries and logs demand activity — so resolving your own identifier list IS the contribution. property_rid is a non-authoritative join/match handle, never an authorization credential. Re-resolving is idempotent on the identifier→rid mapping but additive on the activity log.
curl --request POST \
--url https://agenticadvertising.org/api/registry/resolve \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"identifiers": [
{
"type": "domain",
"value": "nytimes.com"
}
],
"provenance": {
"context": "unilever_q3"
},
"mode": "resolve"
}
'import requests
url = "https://agenticadvertising.org/api/registry/resolve"
payload = {
"identifiers": [
{
"type": "domain",
"value": "nytimes.com"
}
],
"provenance": { "context": "unilever_q3" },
"mode": "resolve"
}
headers = {
"Authorization": "Bearer <token>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {Authorization: 'Bearer <token>', 'Content-Type': 'application/json'},
body: JSON.stringify({
identifiers: [{type: 'domain', value: 'nytimes.com'}],
provenance: {context: 'unilever_q3'},
mode: 'resolve'
})
};
fetch('https://agenticadvertising.org/api/registry/resolve', 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/resolve",
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([
'identifiers' => [
[
'type' => 'domain',
'value' => 'nytimes.com'
]
],
'provenance' => [
'context' => 'unilever_q3'
],
'mode' => 'resolve'
]),
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>",
"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/resolve"
payload := strings.NewReader("{\n \"identifiers\": [\n {\n \"type\": \"domain\",\n \"value\": \"nytimes.com\"\n }\n ],\n \"provenance\": {\n \"context\": \"unilever_q3\"\n },\n \"mode\": \"resolve\"\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("Authorization", "Bearer <token>")
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/resolve")
.header("Authorization", "Bearer <token>")
.header("Content-Type", "application/json")
.body("{\n \"identifiers\": [\n {\n \"type\": \"domain\",\n \"value\": \"nytimes.com\"\n }\n ],\n \"provenance\": {\n \"context\": \"unilever_q3\"\n },\n \"mode\": \"resolve\"\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://agenticadvertising.org/api/registry/resolve")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["Authorization"] = 'Bearer <token>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"identifiers\": [\n {\n \"type\": \"domain\",\n \"value\": \"nytimes.com\"\n }\n ],\n \"provenance\": {\n \"context\": \"unilever_q3\"\n },\n \"mode\": \"resolve\"\n}"
response = http.request(request)
puts response.read_body{
"resolved": [
{
"identifier": {
"type": "domain",
"value": "nytimes.com"
},
"property_rid": "<string>",
"classification": "property",
"source": "<string>"
}
],
"summary": {
"total": 123,
"resolved": 123,
"created": 123,
"excluded": 123,
"not_found": 123
},
"server_timestamp": "<string>"
}{
"error": "<string>"
}{
"error": "<string>"
}Authorizations
Bearer token in the Authorization header. Two token types are accepted:
- Organization API key (
sk_...) issued via the dashboard. Org-scoped, long-lived, for server-to-server use. - User JWT obtained via the OAuth 2.1 authorization code flow with PKCE. User-scoped, short-lived. Discover the authorization server at
/.well-known/oauth-authorization-serverand the protected-resource metadata at/.well-known/oauth-protected-resource/api.
Body
Identifiers to resolve (and, in resolve mode, contribute). Max 10,000 per call for all callers.
1 - 10000 elementsShow child attributes
Show child attributes
Show child attributes
Show child attributes
resolve (default) contributes the identifiers, auto-creates missing catalog entries, logs demand activity, and returns rids — requires authentication. lookup is a pure read: no write, no activity log, no auth.
resolve, lookup Was this page helpful?