🎉 AdCP 3.0 is now GA — see what's new
curl --request GET \
--url https://agenticadvertising.org/api/registry/agents/search \
--header 'Authorization: Bearer <token>'{
"results": [
{
"agent_url": "<string>",
"channels": [
"<string>"
],
"property_types": [
"<string>"
],
"markets": [
"<string>"
],
"categories": [
"<string>"
],
"tags": [
"<string>"
],
"delivery_types": [
"<string>"
],
"format_ids": [
"<unknown>"
],
"property_count": 123,
"publisher_count": 123,
"has_tmp": true,
"category_taxonomy": "<string>",
"relevance_score": 123,
"matched_filters": [
"<string>"
],
"updated_at": "2023-11-07T05:31:56Z"
}
],
"cursor": "<string>",
"has_more": true
}Search agents by inventory profile — channels, markets, content categories, property types, and more. Filters use AND across dimensions and OR within a dimension. Results are ranked by relevance score.
curl --request GET \
--url https://agenticadvertising.org/api/registry/agents/search \
--header 'Authorization: Bearer <token>'{
"results": [
{
"agent_url": "<string>",
"channels": [
"<string>"
],
"property_types": [
"<string>"
],
"markets": [
"<string>"
],
"categories": [
"<string>"
],
"tags": [
"<string>"
],
"delivery_types": [
"<string>"
],
"format_ids": [
"<unknown>"
],
"property_count": 123,
"publisher_count": 123,
"has_tmp": true,
"category_taxonomy": "<string>",
"relevance_score": 123,
"matched_filters": [
"<string>"
],
"updated_at": "2023-11-07T05:31:56Z"
}
],
"cursor": "<string>",
"has_more": true
}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.
Bearer token in the Authorization header. Two token types are accepted:
sk_...) issued via the dashboard. Org-scoped, long-lived, for server-to-server use./.well-known/oauth-authorization-server and the protected-resource metadata at /.well-known/oauth-protected-resource/api.Comma-separated channel filter
"ctv,olv"
Comma-separated property type filter
"ctv_app,website"
Comma-separated market/country code filter
"US,GB"
Comma-separated IAB content category filter
"IAB-7,IAB-7-1"
Comma-separated tag filter
"premium"
Comma-separated delivery type filter
"guaranteed,programmatic"
Require TMP support
true, false Minimum number of properties in inventory
x >= 0Pagination cursor from a previous response
Max results per page (default 50, max 200)
1 <= x <= 200Was this page helpful?