Comment #355
· 5/8/2025
Apud vulticulus avarus surgo suscipio conduco comes.
comments / #355
Apud vulticulus avarus surgo suscipio conduco comes.
Comment #355
5/8/2025
curl -sS \
"https://example-data.com/api/v1/comments/355" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/comments/355"
);
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/355"
);
const comment = (await res.json()) as Comment;import requests
res = requests.get(
"https://example-data.com/api/v1/comments/355"
)
comment = res.json() {
"id": 355,
"userId": 194,
"targetType": "post",
"targetId": 44,
"body": "Apud vulticulus avarus surgo suscipio conduco comes.",
"isEdited": true,
"createdAt": "2025-05-08T15:53:11.309Z",
"updatedAt": "2025-11-17T17:29:03.836Z"
}