Comment #1448
· 4/29/2026
Textor cupiditate praesentium supplanto arbor virtus ait. Nihil debitis victus conforto blanditiis demens sufficio nobis facere credo.
comments / #1448
Textor cupiditate praesentium supplanto arbor virtus ait. Nihil debitis victus conforto blanditiis demens sufficio nobis facere credo.
Comment #1448
4/29/2026
curl -sS \
"https://example-data.com/api/v1/comments/1448" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/comments/1448"
);
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/1448"
);
const comment = (await res.json()) as Comment;import requests
res = requests.get(
"https://example-data.com/api/v1/comments/1448"
)
comment = res.json() {
"id": 1448,
"userId": 87,
"targetType": "post",
"targetId": 212,
"body": "Textor cupiditate praesentium supplanto arbor virtus ait. Nihil debitis victus conforto blanditiis demens sufficio nobis facere credo.",
"isEdited": false,
"createdAt": "2026-04-29T16:03:21.458Z",
"updatedAt": "2026-04-29T16:03:21.458Z"
}