@@ -62,6 +62,7 @@ def get(
6262 account_id : str ,
6363 domain : str | Omit = omit ,
6464 skip_dns : bool | Omit = omit ,
65+ skip_ranking : bool | Omit = omit ,
6566 # Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
6667 # The extra values given here take precedence over values defined on the client or passed to this method.
6768 extra_headers : Headers | None = None ,
@@ -77,6 +78,12 @@ def get(
7778
7879 skip_dns: Skip DNS resolution lookups for faster response.
7980
81+ skip_ranking: Skip the domain ranking lookup for faster responses. Defaults to `false`
82+ (ranking is included). Set to `true` to opt out — primarily used by callers like
83+ Cloudflare Radar that need to avoid a circular dependency when building the
84+ domain details page. Note: the bulk endpoint (`/intel/domain/bulk`) uses
85+ opposite defaults — see `include_ranking` there.
86+
8087 extra_headers: Send extra headers
8188
8289 extra_query: Add additional query parameters to the request
@@ -98,6 +105,7 @@ def get(
98105 {
99106 "domain" : domain ,
100107 "skip_dns" : skip_dns ,
108+ "skip_ranking" : skip_ranking ,
101109 },
102110 domain_get_params .DomainGetParams ,
103111 ),
@@ -137,6 +145,7 @@ async def get(
137145 account_id : str ,
138146 domain : str | Omit = omit ,
139147 skip_dns : bool | Omit = omit ,
148+ skip_ranking : bool | Omit = omit ,
140149 # Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
141150 # The extra values given here take precedence over values defined on the client or passed to this method.
142151 extra_headers : Headers | None = None ,
@@ -152,6 +161,12 @@ async def get(
152161
153162 skip_dns: Skip DNS resolution lookups for faster response.
154163
164+ skip_ranking: Skip the domain ranking lookup for faster responses. Defaults to `false`
165+ (ranking is included). Set to `true` to opt out — primarily used by callers like
166+ Cloudflare Radar that need to avoid a circular dependency when building the
167+ domain details page. Note: the bulk endpoint (`/intel/domain/bulk`) uses
168+ opposite defaults — see `include_ranking` there.
169+
155170 extra_headers: Send extra headers
156171
157172 extra_query: Add additional query parameters to the request
@@ -173,6 +188,7 @@ async def get(
173188 {
174189 "domain" : domain ,
175190 "skip_dns" : skip_dns ,
191+ "skip_ranking" : skip_ranking ,
176192 },
177193 domain_get_params .DomainGetParams ,
178194 ),
0 commit comments