Comment #1105
· 5/21/2026
Tendo attonbitus audio verus deinde aperio adamo vulgo.
comments / #1105
Tendo attonbitus audio verus deinde aperio adamo vulgo.
Comment #1105
5/21/2026
curl -sS \
"https://example-data.com/api/v1/comments/1105" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/comments/1105"
);
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/1105"
);
const comment = (await res.json()) as Comment;import requests
res = requests.get(
"https://example-data.com/api/v1/comments/1105"
)
comment = res.json() {
"id": 1105,
"userId": 19,
"targetType": "post",
"targetId": 12,
"body": "Tendo attonbitus audio verus deinde aperio adamo vulgo.",
"isEdited": false,
"createdAt": "2026-05-21T13:09:08.614Z",
"updatedAt": "2026-05-21T13:09:08.614Z"
}