Comment #66
· 3/9/2026
Tergum repellendus non suscipio molestias arbor deserunt stips apud. Auctus tot vox strenuus thesaurus aeneus mollitia.
comments / #66
Tergum repellendus non suscipio molestias arbor deserunt stips apud. Auctus tot vox strenuus thesaurus aeneus mollitia.
Comment #66
3/9/2026
curl -sS \
"https://example-data.com/api/v1/comments/66" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/comments/66"
);
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/66"
);
const comment = (await res.json()) as Comment;import requests
res = requests.get(
"https://example-data.com/api/v1/comments/66"
)
comment = res.json() {
"id": 66,
"userId": 30,
"targetType": "post",
"targetId": 75,
"body": "Tergum repellendus non suscipio molestias arbor deserunt stips apud. Auctus tot vox strenuus thesaurus aeneus mollitia.",
"isEdited": false,
"createdAt": "2026-03-09T09:04:08.987Z",
"updatedAt": "2026-03-09T09:04:08.987Z"
}