Content Ratings¶
API for IARC (International Age Rating Coalition) app content ratings.
Content Rating¶
-
GET
/api/v2/apps/app/(int:id|string:app_slug)/content_ratings
¶ Returns the list of content ratings of an app.
Request
Parameters: - since (datetime (e.g. 2013-12-25 14:12:36)) – filter only for content ratings modified after the datetime.
Response
Parameters: - meta (object) – Listing response meta.
- objects (array) – A listing of content ratings.
Status Codes: - 200 OK – successfully completed.
- 404 Not Found – not found.
Example:
{ "objects": [ { "created": "2013-06-14T11:54:24", "modified": "2013-06-24T22:01:37", "body": "esrb", "rating": "10", }, { "created": "2013-06-14T11:54:24", "modified": "2013-06-24T22:01:37", "body": "pegi", "rating": "3", }, ... ] }