example-data.com

comments

comments

Page 7 of 10.

Comment #145

· 3/23/2025

Vigilo debitis villa audio video trado templum antea.

Comment #146

· 4/24/2026

Aptus thorax animi aro delectus quidem.

Comment #147

· 5/17/2026

Consequuntur pecco omnis decipio. Ad sodalitas aequus terra cinis viduo tripudio facilis chirographum. Auxilium tui tot voluptas clam atavus subnecto sollers defendo laborum.

Comment #148

· 5/19/2025

Decor comburo deficio accendo templum voluntarius complectus arbor. Talis accusator cubo. Adsidue vae thermae pauci dedico varietas carbo sufficio.

Comment #149

· 3/30/2025

Facilis tumultus est crinis sonitus commodi ducimus crur corporis acceptus.

Comment #150

· 2/15/2025

Pariatur defungo cupiditas aedificium tristis aetas tam paens.

Showing first 6 of 24 on this page.

curl -sS \
  "https://example-data.com/api/v1/comments?limit=25"
const res = await fetch(
  "https://example-data.com/api/v1/comments?limit=25"
);
const { data, meta } = await res.json();
import type { Comment, ListEnvelope } from "https://example-data.com/types/comments.d.ts";

const res = await fetch(
  "https://example-data.com/api/v1/comments?limit=25"
);
const { data, meta } = (await res.json()) as ListEnvelope<Comment>;
import requests

res = requests.get(
    "https://example-data.com/api/v1/comments",
    params={"limit": 25},
)
data = res.json()
{
  "data": [
    {
      "id": 145,
      "userId": 38,
      "targetType": "post",
      "targetId": 406,
      "body": "Vigilo debitis villa audio video trado templum antea.",
      "isEdited": false,
      "createdAt": "2025-03-23T02:38:05.563Z",
      "updatedAt": "2025-03-23T02:38:05.563Z"
    },
    {
      "id": 146,
      "userId": 161,
      "targetType": "post",
      "targetId": 168,
      "body": "Aptus thorax animi aro delectus quidem.",
      "isEdited": false,
      "createdAt": "2026-04-24T01:48:47.769Z",
      "updatedAt": "2026-04-24T01:48:47.769Z"
    },
    {
      "id": 147,
      "userId": 68,
      "targetType": "post",
      "targetId": 59,
      "body": "Consequuntur pecco omnis decipio. Ad sodalitas aequus terra cinis viduo tripudio facilis chirographum. Auxilium tui tot voluptas clam atavus subnecto sollers defendo laborum.",
      "isEdited": false,
      "createdAt": "2026-05-17T17:38:51.869Z",
      "updatedAt": "2026-05-17T17:38:51.869Z"
    }
  ],
  "meta": {
    "page": 7,
    "limit": 24,
    "total": 1500,
    "totalPages": 63
  },
  "links": {
    "self": "/api/v1/comments?page=7",
    "next": "/api/v1/comments?page=8",
    "prev": "/api/v1/comments?page=6"
  }
}
Draftbit