example-data.com

comments / #98

Comment #98

· 10/7/2025

Ratione eaque textor. Quae caput crustulum cerno conventus thorax corporis amoveo cotidie. Calcar spoliatio illum paens. Vetus qui spargo hic confugo cognomen.

Component variants

Related

curl -sS \
  "https://example-data.com/api/v1/comments/98" \
  -H "Accept: application/json"
const res = await fetch(
  "https://example-data.com/api/v1/comments/98"
);
const comment = await res.json();
import type { Comment } from "https://example-data.com/types/comments.d.ts";

const res = await fetch(
  "https://example-data.com/api/v1/comments/98"
);
const comment = (await res.json()) as Comment;
import requests

res = requests.get(
    "https://example-data.com/api/v1/comments/98"
)
comment = res.json()
{
  "id": 98,
  "userId": 192,
  "targetType": "post",
  "targetId": 71,
  "body": "Ratione eaque textor. Quae caput crustulum cerno conventus thorax corporis amoveo cotidie. Calcar spoliatio illum paens. Vetus qui spargo hic confugo cognomen.",
  "isEdited": false,
  "createdAt": "2025-10-07T23:25:27.361Z",
  "updatedAt": "2025-10-07T23:25:27.361Z"
}
Draftbit