Skip to content

Latest commit

 

History

History
15 lines (12 loc) · 340 Bytes

README.md

File metadata and controls

15 lines (12 loc) · 340 Bytes

Markit

C# implementation of Markit Data APIs

References

Example

Client

using (var client = new MarkitClient()) {
	var companies = await client.GetCompanyAsync("MSFT");
	var quote = await client.GetQuoteAsync("MSFT");
	var timeseries = await client.GetTimeseriesAsync("MSFT", 10);	
}