API Methods - Item Orders
Returns all of the orders on the market
Parameters:
| char_name | required Your character name, so that I can contact you in case something goes wrong |
| buysell | required "s" for sell orders, "b" for buy orders, "a" for both |
| type_ids | Which type_id's to check |
| marketgroup_ids | Which marketgroup_id's to check |
| region_ids | Which regions_id's to check (defaults to The Forge if blank) |
| solarsystem_ids | Which solarsystem_id's to check |
| station_ids | Which station_id's to check |
| callback | The JSONP callback function (optional, only needed for JSONP) |
a max of 10,000 rows will be returned
Return Values
(for .txt requests, this is the column order)| buysell | b=buy, s=sell |
| typeID | eve_inv_types.type_id |
| orderID | unique order id from eve |
| stationID | eve_sta_stations.station_id |
| solarsystemID | eve_map_solarsystems.solarsystem_id |
| regionID | eve_map_regions.region_id |
| price | price |
| volEntered | original quantity for sale |
| volRemaining | quantity still available |
| minVolume | minimum quantity if it is a buy order |
| range | the range for buy orders as provided by eve. -1,0,1,2,3,4,5,10,20,30,40,32767,65535 (sell orders are always 0) |
| issued | yyyy-mm-dd hh:mi:ss |
| expires | yyyy-mm-dd hh:mi:ss |
| created | yyyy-mm-dd hh:mi:ss |
Example URLs
Click through to each URL to see the return values.
- http://api.eve-marketdata.com/api/item_orders2.txt?char_name=demo&buysell=b&type_ids=34,36 - TXT format
- http://api.eve-marketdata.com/api/item_orders2.xml?char_name=demo&buysell=b&type_ids=34,36 - XML format
- http://api.eve-marketdata.com/api/item_orders2.json?char_name=demo&buysell=b&type_ids=34,36 - JSON format