v1

latestOpenAPI 3.1.12026-07-1711423400.3 KB
reviews

Review information.

This endpoint will retrieve the details of a review item.

get/reviews/{reviewID}

Path parameters

reviewIDstring required

ID of the review.

Response

Successful GET Review JSON response

object required

Example response

{
  "data": [
    {
      "id": 8,
      "type": "reviews",
      "href": "/v1/reviews/8",
      "attributes": {
        "score": 4.5,
        "description": "The best anime I've seen in a while",
        "createdAt": 1524009600
      }
    },
    {
      "id": 9,
      "type": "reviews",
      "href": "/v1/reviews/9",
      "attributes": {
        "score": 2.5,
        "description": null,
        "createdAt": 1524009600
      }
    }
  ]
}