@@ -117,6 +117,7 @@ def retrieve(
117117 "welsh" ,
118118 ]
119119 | NotGiven = NOT_GIVEN ,
120+ max_speed : bool | NotGiven = NOT_GIVEN ,
120121 # Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
121122 # The extra values given here take precedence over values defined on the client or passed to this method.
122123 extra_headers : Headers | None = None ,
@@ -132,6 +133,10 @@ def retrieve(
132133
133134 force_language: Optional parameter to force the language of the retrieved brand data
134135
136+ max_speed: Optional parameter to optimize the API call for maximum speed. When set to true,
137+ the API will skip social media data extraction and external service calls (like
138+ Crunchbase) to return results faster with basic brand information only.
139+
135140 extra_headers: Send extra headers
136141
137142 extra_query: Add additional query parameters to the request
@@ -151,6 +156,7 @@ def retrieve(
151156 {
152157 "domain" : domain ,
153158 "force_language" : force_language ,
159+ "max_speed" : max_speed ,
154160 },
155161 brand_retrieve_params .BrandRetrieveParams ,
156162 ),
@@ -480,6 +486,7 @@ async def retrieve(
480486 "welsh" ,
481487 ]
482488 | NotGiven = NOT_GIVEN ,
489+ max_speed : bool | NotGiven = NOT_GIVEN ,
483490 # Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
484491 # The extra values given here take precedence over values defined on the client or passed to this method.
485492 extra_headers : Headers | None = None ,
@@ -495,6 +502,10 @@ async def retrieve(
495502
496503 force_language: Optional parameter to force the language of the retrieved brand data
497504
505+ max_speed: Optional parameter to optimize the API call for maximum speed. When set to true,
506+ the API will skip social media data extraction and external service calls (like
507+ Crunchbase) to return results faster with basic brand information only.
508+
498509 extra_headers: Send extra headers
499510
500511 extra_query: Add additional query parameters to the request
@@ -514,6 +525,7 @@ async def retrieve(
514525 {
515526 "domain" : domain ,
516527 "force_language" : force_language ,
528+ "max_speed" : max_speed ,
517529 },
518530 brand_retrieve_params .BrandRetrieveParams ,
519531 ),
0 commit comments