Comment #19
· 4/28/2026
Desipio reiciendis delectatio sui decet solutio torrens valens totam.
comments / #19
Desipio reiciendis delectatio sui decet solutio torrens valens totam.
Comment #19
4/28/2026
curl -sS \
"https://example-data.com/api/v1/comments/19" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/comments/19"
);
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/19"
);
const comment = (await res.json()) as Comment;import requests
res = requests.get(
"https://example-data.com/api/v1/comments/19"
)
comment = res.json() {
"id": 19,
"userId": 22,
"targetType": "post",
"targetId": 110,
"body": "Desipio reiciendis delectatio sui decet solutio torrens valens totam.",
"isEdited": false,
"createdAt": "2026-04-28T23:36:18.200Z",
"updatedAt": "2026-04-28T23:36:18.200Z"
}