Comment #226
· 12/31/2025
Speculum vox aperiam aptus demo labore vis cras rerum votum.
comments / #226
Speculum vox aperiam aptus demo labore vis cras rerum votum.
Comment #226
12/31/2025
curl -sS \
"https://example-data.com/api/v1/comments/226" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/comments/226"
);
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/226"
);
const comment = (await res.json()) as Comment;import requests
res = requests.get(
"https://example-data.com/api/v1/comments/226"
)
comment = res.json() {
"id": 226,
"userId": 22,
"targetType": "post",
"targetId": 62,
"body": "Speculum vox aperiam aptus demo labore vis cras rerum votum.",
"isEdited": false,
"createdAt": "2025-12-31T12:54:09.507Z",
"updatedAt": "2025-12-31T12:54:09.507Z"
}