Comment #75
· 2/16/2026
Tam delibero sit caecus vesper copiose suffragium desino annus.
comments / #75
Tam delibero sit caecus vesper copiose suffragium desino annus.
Comment #75
2/16/2026
curl -sS \
"https://example-data.com/api/v1/comments/75" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/comments/75"
);
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/75"
);
const comment = (await res.json()) as Comment;import requests
res = requests.get(
"https://example-data.com/api/v1/comments/75"
)
comment = res.json() {
"id": 75,
"userId": 176,
"targetType": "post",
"targetId": 174,
"body": "Tam delibero sit caecus vesper copiose suffragium desino annus.",
"isEdited": false,
"createdAt": "2026-02-16T12:21:03.731Z",
"updatedAt": "2026-02-16T12:21:03.731Z"
}