@@ -124,83 +124,6 @@ def retrieve(
124124 ]
125125 | Omit = omit ,
126126 max_speed : bool | Omit = omit ,
127- name : str | Omit = omit ,
128- ticker : str | Omit = omit ,
129- ticker_exchange : Literal [
130- "AMEX" ,
131- "AMS" ,
132- "AQS" ,
133- "ASX" ,
134- "ATH" ,
135- "BER" ,
136- "BME" ,
137- "BRU" ,
138- "BSE" ,
139- "BUD" ,
140- "BUE" ,
141- "BVC" ,
142- "CBOE" ,
143- "CNQ" ,
144- "CPH" ,
145- "DFM" ,
146- "DOH" ,
147- "DUB" ,
148- "DUS" ,
149- "DXE" ,
150- "EGX" ,
151- "FSX" ,
152- "HAM" ,
153- "HEL" ,
154- "HKSE" ,
155- "HOSE" ,
156- "ICE" ,
157- "IOB" ,
158- "IST" ,
159- "JKT" ,
160- "JNB" ,
161- "JPX" ,
162- "KLS" ,
163- "KOE" ,
164- "KSC" ,
165- "KUW" ,
166- "LIS" ,
167- "LSE" ,
168- "MCX" ,
169- "MEX" ,
170- "MIL" ,
171- "MUN" ,
172- "NASDAQ" ,
173- "NEO" ,
174- "NSE" ,
175- "NYSE" ,
176- "NZE" ,
177- "OSL" ,
178- "OTC" ,
179- "PAR" ,
180- "PNK" ,
181- "PRA" ,
182- "RIS" ,
183- "SAO" ,
184- "SAU" ,
185- "SES" ,
186- "SET" ,
187- "SGO" ,
188- "SHH" ,
189- "SHZ" ,
190- "SIX" ,
191- "STO" ,
192- "STU" ,
193- "TAI" ,
194- "TAL" ,
195- "TLV" ,
196- "TSX" ,
197- "TSXV" ,
198- "TWO" ,
199- "VIE" ,
200- "WSE" ,
201- "XETRA" ,
202- ]
203- | Omit = omit ,
204127 timeout_ms : int | Omit = omit ,
205128 # Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
206129 # The extra values given here take precedence over values defined on the client or passed to this method.
@@ -210,8 +133,7 @@ def retrieve(
210133 timeout : float | httpx .Timeout | None | NotGiven = not_given ,
211134 ) -> BrandRetrieveResponse :
212135 """
213- Retrieve brand information using one of three methods: domain name, company
214- name, or stock ticker symbol. Exactly one of these parameters must be provided.
136+ Retrieve brand information from a domain name
215137
216138 Args:
217139 domain: Domain name to retrieve brand data for (e.g., 'example.com', 'google.com').
@@ -224,17 +146,6 @@ def retrieve(
224146 the API will skip time-consuming operations for faster response at the cost of
225147 less comprehensive data. Works with all three lookup methods.
226148
227- name: Company name to retrieve brand data for (e.g., 'Apple Inc', 'Microsoft
228- Corporation'). Must be 3-30 characters. Cannot be used with domain or ticker
229- parameters.
230-
231- ticker: Stock ticker symbol to retrieve brand data for (e.g., 'AAPL', 'GOOGL', 'BRK.A').
232- Must be 1-15 characters, letters/numbers/dots only. Cannot be used with domain
233- or name parameters.
234-
235- ticker_exchange: Optional stock exchange for the ticker. Only used when ticker parameter is
236- provided. Defaults to assume ticker is American if not specified.
237-
238149 timeout_ms: Optional timeout in milliseconds for the request. If the request takes longer
239150 than this value, it will be aborted with a 408 status code. Maximum allowed
240151 value is 300000ms (5 minutes).
@@ -259,9 +170,6 @@ def retrieve(
259170 "domain" : domain ,
260171 "force_language" : force_language ,
261172 "max_speed" : max_speed ,
262- "name" : name ,
263- "ticker" : ticker ,
264- "ticker_exchange" : ticker_exchange ,
265173 "timeout_ms" : timeout_ms ,
266174 },
267175 brand_retrieve_params .BrandRetrieveParams ,
@@ -1036,83 +944,6 @@ async def retrieve(
1036944 ]
1037945 | Omit = omit ,
1038946 max_speed : bool | Omit = omit ,
1039- name : str | Omit = omit ,
1040- ticker : str | Omit = omit ,
1041- ticker_exchange : Literal [
1042- "AMEX" ,
1043- "AMS" ,
1044- "AQS" ,
1045- "ASX" ,
1046- "ATH" ,
1047- "BER" ,
1048- "BME" ,
1049- "BRU" ,
1050- "BSE" ,
1051- "BUD" ,
1052- "BUE" ,
1053- "BVC" ,
1054- "CBOE" ,
1055- "CNQ" ,
1056- "CPH" ,
1057- "DFM" ,
1058- "DOH" ,
1059- "DUB" ,
1060- "DUS" ,
1061- "DXE" ,
1062- "EGX" ,
1063- "FSX" ,
1064- "HAM" ,
1065- "HEL" ,
1066- "HKSE" ,
1067- "HOSE" ,
1068- "ICE" ,
1069- "IOB" ,
1070- "IST" ,
1071- "JKT" ,
1072- "JNB" ,
1073- "JPX" ,
1074- "KLS" ,
1075- "KOE" ,
1076- "KSC" ,
1077- "KUW" ,
1078- "LIS" ,
1079- "LSE" ,
1080- "MCX" ,
1081- "MEX" ,
1082- "MIL" ,
1083- "MUN" ,
1084- "NASDAQ" ,
1085- "NEO" ,
1086- "NSE" ,
1087- "NYSE" ,
1088- "NZE" ,
1089- "OSL" ,
1090- "OTC" ,
1091- "PAR" ,
1092- "PNK" ,
1093- "PRA" ,
1094- "RIS" ,
1095- "SAO" ,
1096- "SAU" ,
1097- "SES" ,
1098- "SET" ,
1099- "SGO" ,
1100- "SHH" ,
1101- "SHZ" ,
1102- "SIX" ,
1103- "STO" ,
1104- "STU" ,
1105- "TAI" ,
1106- "TAL" ,
1107- "TLV" ,
1108- "TSX" ,
1109- "TSXV" ,
1110- "TWO" ,
1111- "VIE" ,
1112- "WSE" ,
1113- "XETRA" ,
1114- ]
1115- | Omit = omit ,
1116947 timeout_ms : int | Omit = omit ,
1117948 # Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
1118949 # The extra values given here take precedence over values defined on the client or passed to this method.
@@ -1122,8 +953,7 @@ async def retrieve(
1122953 timeout : float | httpx .Timeout | None | NotGiven = not_given ,
1123954 ) -> BrandRetrieveResponse :
1124955 """
1125- Retrieve brand information using one of three methods: domain name, company
1126- name, or stock ticker symbol. Exactly one of these parameters must be provided.
956+ Retrieve brand information from a domain name
1127957
1128958 Args:
1129959 domain: Domain name to retrieve brand data for (e.g., 'example.com', 'google.com').
@@ -1136,17 +966,6 @@ async def retrieve(
1136966 the API will skip time-consuming operations for faster response at the cost of
1137967 less comprehensive data. Works with all three lookup methods.
1138968
1139- name: Company name to retrieve brand data for (e.g., 'Apple Inc', 'Microsoft
1140- Corporation'). Must be 3-30 characters. Cannot be used with domain or ticker
1141- parameters.
1142-
1143- ticker: Stock ticker symbol to retrieve brand data for (e.g., 'AAPL', 'GOOGL', 'BRK.A').
1144- Must be 1-15 characters, letters/numbers/dots only. Cannot be used with domain
1145- or name parameters.
1146-
1147- ticker_exchange: Optional stock exchange for the ticker. Only used when ticker parameter is
1148- provided. Defaults to assume ticker is American if not specified.
1149-
1150969 timeout_ms: Optional timeout in milliseconds for the request. If the request takes longer
1151970 than this value, it will be aborted with a 408 status code. Maximum allowed
1152971 value is 300000ms (5 minutes).
@@ -1171,9 +990,6 @@ async def retrieve(
1171990 "domain" : domain ,
1172991 "force_language" : force_language ,
1173992 "max_speed" : max_speed ,
1174- "name" : name ,
1175- "ticker" : ticker ,
1176- "ticker_exchange" : ticker_exchange ,
1177993 "timeout_ms" : timeout_ms ,
1178994 },
1179995 brand_retrieve_params .BrandRetrieveParams ,
0 commit comments