🚀 AdCP 3.1 beta is now available — see what's new
curl --request GET \
--url https://agenticadvertising.org/api/v1/agents/{encodedUrl}/publishers{
"agent_url": "<string>",
"directory_indexed_at": "2023-11-07T05:31:56Z",
"publishers": [
{
"publisher_domain": "<string>",
"manager_domain": "<string>",
"properties_authorized": 1,
"properties_total": 1,
"signing_keys_pinned": true,
"last_verified_at": "2023-11-07T05:31:56Z"
}
],
"next_cursor": "<string>"
}Given a percent-encoded agent_url, returns the publishers whose adagents.json authorizes that agent, with provenance (discovery_method, manager_domain), per-publisher property counts (properties_authorized, properties_total, scoped to this publisher only — never network-wide), signing-key pin status, and lifecycle state (authorized / revoked).
Spec: docs/aao/directory-api.mdx (adcp#4823). This endpoint is the spec-compliant richer-shape replacement for the legacy /api/registry/lookup/agent/{agentUrl}/domains, which returns domain strings only.
curl --request GET \
--url https://agenticadvertising.org/api/v1/agents/{encodedUrl}/publishers{
"agent_url": "<string>",
"directory_indexed_at": "2023-11-07T05:31:56Z",
"publishers": [
{
"publisher_domain": "<string>",
"manager_domain": "<string>",
"properties_authorized": 1,
"properties_total": 1,
"signing_keys_pinned": true,
"last_verified_at": "2023-11-07T05:31:56Z"
}
],
"next_cursor": "<string>"
}Documentation Index
Fetch the complete documentation index at: https://docs.adcontextprotocol.org/llms.txt
Use this file to discover all available pages before exploring further.
Percent-encoded agent_url
ISO 8601 — return only publishers with last_verified_at ≥ since
Opaque pagination cursor returned by a prior response
Lifecycle status filter — repeat the key once per value (?status=authorized&status=revoked). Default: authorized. The comma-separated single-value form is rejected with 400.
authorized, revoked Page size, default 200, max 1000
1 <= x <= 1000Was this page helpful?