Comment API : Get post index

GET /api/1/items/:item_id/comments.json

指定したアイテムのコメント一覧を返却する。 コメント一覧は投稿日時の新しい順になっている。

Parameters

Key Value デフォルト値
item_id 対象アイテムのID
page 取得するページ番号。1 <= page 1
limit 1ページに含む要素の数。 1 <= limit <= 100 100

Request

Route

GET /api/1/items/566302110/comments.json

Headers

Host: example.org
Cookie: 
Origin: 

Response

Headers

Content-Type: application/json; charset=utf-8
Set-Cookie: guest_distinct_id=d0bdf296-682f-4161-81c9-66847fa0e2dd; expires=Mon, 09-Jan-2023 01:54:06 GMT
THIS_IS_SESSION_COOKIE_KEY_FOR_SPEC=BAh7B0kiD3Nlc3Npb25faWQGOgZFRkkiJThjOGI3NWVmYmJhYTU0ZTliMzdiM2QyYmMyYWVmOTQ3BjsAVEkiGGtwaV9wcmV2X2NvbnRyb2xsZXIGOwBGSSIXYXBpL2NvbW1lbnRzI2luZGV4BjsARg%3D%3D--16f5b6af56f3a63a690f69ab291f01d846c490cc; path=/; HttpOnly
X-Ua-Compatible: IE=Edge,chrome=1
E-Tag: "181aa08a171910b09563f16ef5555bd1"
Cache-Control: max-age=0, private, must-revalidate
X-Request: fbba0e2de05c41dbded547cbd7ffc1f6
X-Runtime: 0.036105
Content-Length: 2122

Status

200 OK

Body

フォーマット: comments/paginated_list
{
  "total": 2,
  "page": 1,
  "limit": 100,
  "comments": [
    {
      "id": 122467996,
      "item_id": 566302110,
      "text": "Voluptatem est magni. Perspiciatis laborum porro provident vel beatae. Voluptatem nisi sit voluptatem consectetur id sed.",
      "created_at": "2013-01-09T01:54:06Z",
      "user": {
        "id": 754959146,
        "screen_name": "Tabata",
        "profile_image_url": {
          "original": "http://sc2-items-dev.s3.amazonaws.com/profile_images/original/missing.png?t=1",
          "crop_S": "http://sc2-items-dev.s3.amazonaws.com/profile_images/crop_S/missing.png?t=1",
          "crop_M": "http://sc2-items-dev.s3.amazonaws.com/profile_images/crop_M/missing.png?t=1",
          "crop_M1": "http://sc2-items-dev.s3.amazonaws.com/profile_images/crop_M1/missing.png?t=1",
          "crop_M2": "http://sc2-items-dev.s3.amazonaws.com/profile_images/crop_M2/missing.png?t=1",
          "crop_L": "http://sc2-items-dev.s3.amazonaws.com/profile_images/crop_L/missing.png?t=1",
          "crop_LL": "http://sc2-items-dev.s3.amazonaws.com/profile_images/crop_LL/missing.png?t=1",
          "normal_L": "http://sc2-items-dev.s3.amazonaws.com/profile_images/normal_L/missing.png?t=1",
          "normal_LL": "http://sc2-items-dev.s3.amazonaws.com/profile_images/normal_LL/missing.png?t=1"
        }
      }
    },
    {
      "id": 122467993,
      "item_id": 566302110,
      "text": "This is a comment by user 1 to item 1",
      "created_at": "2013-01-08T23:54:03Z",
      "user": {
        "id": 974211560,
        "screen_name": "Iguchi Takahito",
        "profile_image_url": {
          "original": "http://sc2-items-dev.s3.amazonaws.com/profile_images/original/missing.png?t=1",
          "crop_S": "http://sc2-items-dev.s3.amazonaws.com/profile_images/crop_S/missing.png?t=1",
          "crop_M": "http://sc2-items-dev.s3.amazonaws.com/profile_images/crop_M/missing.png?t=1",
          "crop_M1": "http://sc2-items-dev.s3.amazonaws.com/profile_images/crop_M1/missing.png?t=1",
          "crop_M2": "http://sc2-items-dev.s3.amazonaws.com/profile_images/crop_M2/missing.png?t=1",
          "crop_L": "http://sc2-items-dev.s3.amazonaws.com/profile_images/crop_L/missing.png?t=1",
          "crop_LL": "http://sc2-items-dev.s3.amazonaws.com/profile_images/crop_LL/missing.png?t=1",
          "normal_L": "http://sc2-items-dev.s3.amazonaws.com/profile_images/normal_L/missing.png?t=1",
          "normal_LL": "http://sc2-items-dev.s3.amazonaws.com/profile_images/normal_LL/missing.png?t=1"
        }
      }
    }
  ]
}