Comment #1356
· 1/20/2026
Valeo tener adeptio. Iure aegrus angelus valeo. Substantia error aer. Pecto ver vestrum angulus esse commemoro laudantium.
comments / #1356
Valeo tener adeptio. Iure aegrus angelus valeo. Substantia error aer. Pecto ver vestrum angulus esse commemoro laudantium.
Comment #1356
1/20/2026
curl -sS \
"https://example-data.com/api/v1/comments/1356" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/comments/1356"
);
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/1356"
);
const comment = (await res.json()) as Comment;import requests
res = requests.get(
"https://example-data.com/api/v1/comments/1356"
)
comment = res.json() {
"id": 1356,
"userId": 63,
"targetType": "post",
"targetId": 448,
"body": "Valeo tener adeptio. Iure aegrus angelus valeo. Substantia error aer. Pecto ver vestrum angulus esse commemoro laudantium.",
"isEdited": false,
"createdAt": "2026-01-20T07:14:40.549Z",
"updatedAt": "2026-01-20T07:14:40.549Z"
}