Skip to content

Company

Wojciech Zankowski edited this page Nov 25, 2017 · 1 revision

Example

final IEXTradingClient iexTradingClient = IEXTradingClient.create();
final Company company = iexTradingClient.executeRequest(new CompanyRequestBuilder()
		.withSymbol("AAPL")
		.build());
System.out.println(company);

Response

Company {
	symbol = AAPL,
	companyName = Apple Inc.,
	exchange = Nasdaq Global Select,
	industry = Computer Hardware,
	website = http://www.apple.com, 
	description = Apple Inc is designs, manufactures and markets mobile communication and media devices and personal computers, and sells a variety of related software, services, accessories, networking solutions and third-party digital content and applications., 
	CEO=Timothy D. Cook, 
	issueType=cs, 
	sector=Technology
}
Clone this wiki locally