None
for identifiers that
cannot be matched. The methods include:
get_companies_by_isin(isins: list[str])
get_companies_by_cusip(cusips: list[str])
get_companies_by_sedol(sedols: list[str])
get_companies_by_listing(listings: list[str])
TypeError
if the input is not a list of strings,
ensuring users provide valid data.find_companies
returns a list of companies that matched the value parameter.
The value can match with the company’s name, webpage, ticker, or any market identifiers.
Additionally, you can use the type
and country
parameters to filter the results. These
parameters are optional and can be passed as a single value or a list of values.
find_companies
method is helpful to retrieve companies given user’s input, but not to find IDs for a large list of companies, because each call requires a backend request, and it takes longer.If you still want to use find_companies
programmaticaly for a large list of companies, the how-to guide Threading - Find Entities describes a multi-threaded solution.