📜  公寓 api - 任何代码示例

📅  最后修改于: 2022-03-11 14:55:27.697000             🧑  作者: Mango

代码示例1
GET https://api.apartments.com/v1/api/reviews?pageSize=100&pageNumber=1
Authorization: Bearer 
Accept: application/json

HTTP/1.1 200 OK
{
  "ReviewCount": 1,
  "CurrentPage": 1,
  "TotalPages": 1,
  "Reviews": [
    {
      "ReviewId": 123,
      "CultureCode": "en-us",
      "Title": "I love this place!",
      "Text": "I have live here for 2 years now and...",
      "Rating": 4
    }
  ]
}