These forums have been archived and are now read-only.
The new forums are live and can be found at https://forums.eveonline.com/
[EveLib] A .NET library for EveXML, CREST, EveCentral, and more
https://public-crest.eveonline.com/market/types/?group=https://public-crest.eveonline.com/market/groups/150/
var crest = new EveCrest();var root = crest.GetRoot();var types = root.Query(r => r.MarketTypes);var skillbooks = types.Query(type => type.Where(t => t.MarketGroup.Id == 150));
EveCrest crest = new EveCrest();var orders = new Href("https://crest-tq.eveonline.com/market/10000002/orders/buy/?type=https://crest-tq.eveonline.com/types/587/");var orderCollection = crest.Load(orders);
var corp = new Corporation(new CorporationKey(0, ""), 1000009);
Developer of EveLib and EveAuthUtility
var eveMarketData = new EveMarketData ( ) ; var emdOptions = new EmdOptions { Items = new List < int > { 1223 } , ItemGroups = new List < int > ( ) , Regions = new List < int > ( ) , Stations = new List < int > ( ) , Solarsystems = new List < int > { 30000142 }, RowLimit = 10000 , AgeSpan = TimeSpan.FromDays ( 30 ) , };var orders = eveMarketData.GetItemOrders(emdOptions, OrderType.Both).Result.Orders.ToList();
var eveCentral = new EveCentral ( ) ; MarketStatResponse response = eveCentral.GetMarketStat ( options ) ;