Third Party Developer Blog

Jan
9

A quick update to market orders

CCP FoxFour | 2015-01-09 14:33 | Comments

Hope you all had a wonderful Christmas and New Years. This is just a very quick blog to let you guys know about a small change I was able to squeeze into Proteus upon returning from vacation. After allowing you guys to access real time market information, some of you asked for some extra information to be added to the results. Based on those requests we have added the order id, the id of the location, the id of the type, and the original order volume to the results.

Example entry from: https://api-sisi.testeveonline.com/market/10000002/orders/buy/?type=https://api-sisi.testeveonline.com/types/587/

{
    "totalCount_str": "20",
    "items": [
        {
            "volume_str": "332",
            "buy": true,
            "issued": "2014-10-31T16:21:23",
            "price": 223004.01,
            "volumeEntered": 444,
            "minVolume": 1,
            "volume": 332,
            "range": "station",
            "href": "https://api-sisi.testeveonline.com/market/10000002/orders/3725514252/",
            "duration_str": "90",
            "location": {
                "id_str": "60003760",
                "href": "https://api-sisi.testeveonline.com/universe/locations/60003760/",
                "id": 60003760,
                "name": "Jita IV - Moon 4 - Caldari Navy Assembly Plant"
            },
            "duration": 90,
            "minVolume_str": "1",
            "volumeEntered_str": "444",
            "type": {
                "id_str": "587",
                "href": "https://api-sisi.testeveonline.com/types/587/",
                "id": 587,
                "name": "Rifter"
            },
            "id": 3725514252,
            "id_str": "3725514252"
        }
    ],
    "pageCount": 1,
    "pageCount_str": "1",
    "totalCount": 20
}

The above is live on Sisi now and will ship with Proteus next week.

CCP FoxFour

back