We provide official SDKs for TypeScript, Go, and Python to make it easy to integrate with the OpenRegister API. These SDKs are published and maintained by our team.
import osfrom openregister import Openregisterclient = Openregister( api_key=os.environ.get("OPENREGISTER_API_KEY"), # This is the default and can be omitted)response = client.search.find_companies()print(response.results)
import Openregister from 'openregister';const client = new Openregister({ apiKey: process.env['OPENREGISTER_API_KEY'], // This is the default and can be omitted});const response = await client.search.findCompanies();console.log(response.results);