Keyboard shortcuts

Press or to navigate between chapters

Press S or / to search in the book

Press ? to show this help

Press Esc to hide this help

[GET] /community/item/getInventoryByProfileIDs

Example request

Request

parametertypevaluecomments
titlestr/enumage1, age2, age3, age4
profileidsarray[int]e.g. [196240]

Response

AoE2:DE

Returns item inventories grouped by profile ID. The community endpoint appears to always return empty inventory arrays – for actual item data, use the authenticated /game/item/getInventoryByProfileIDs endpoint instead.

{
    "result": {
        "code": 0,
        "message": "SUCCESS"
    },
    "itemInstancesByProfileID": [
        {
            "\"196240\"": []
        }
    ]
}

Note: The profile ID key in the response is double-quoted as a string (e.g. "\"196240\""). The inventory array is consistently empty on the community endpoint.