{ "success": true, // only false if there was a db / general error "total_report_count": xxx, // total amount of reports found (across all steamids) "total_appeal_count": xxx, // total amount of appeals found (across all steamids) "found_report_count": xxx, // amount of ids with reports against them "found_appeal_count": xxx, // amount of ids with appeals "results": [ "765611xxxxxxxx1": { "is_reported": true/false, // indicates if the "reports" array is filled "has_appeals": true/false, "reports": [ { "id": 1, "type": "Impersonation with intent to defraud", "accused": [765611xxxxxxxx1], // contains community ids, can be multiple if there are multiple accused "victim": [xxxxxxxx], // same as above "description": "Text", // parsed "description" field with all [HIDE] tags removed "evidence": "https://files.f-o-g.eu/url\nhttps://files.f-o-g.eu/url2", // all evidence, [HIDE] removed as well "state": "Accepted", // same state names as in the UI "assigned_to": "Enstage", // current assignee, null if none is set "created_at": "2016-10-01T15:11:07+01:00", "updated_at": "2016-10-01T17:01:00+01:00" }, { "id": 2, "type": "Impersonation with intent to defraud", "accused": ... ... } ], "appeals": [ { "id": 55, "type": "Change of Heart", "description": "Text", // parsed "description" field with all [HIDE] tags removed "evidence": "https://files.f-o-g.eu/url\nhttps://files.f-o-g.eu/url2", // all evidence, [HIDE] removed as well "state": "Rejected", // same state names as in the UI "assigned_to": null, // current assignee, null if none is set "created_at": "2016-10-01T15:11:07+01:00", "updated_at": "2016-10-01T17:01:00+01:00" }, { "id": 56, ... }, ... ] }, "765611xxxxxxxx2": { "is_reported": false, "has_appeals": false, "reports": [], "appeals": [] }, ... ] }