Comment #63
· 1/17/2026
Recusandae minus cotidie cur victus. Aestus textilis voluptas adsidue amoveo tero. Cunctatio arma admoneo thymbra.
comments / #63
Recusandae minus cotidie cur victus. Aestus textilis voluptas adsidue amoveo tero. Cunctatio arma admoneo thymbra.
Comment #63
1/17/2026
curl -sS \
"https://example-data.com/api/v1/comments/63" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/comments/63"
);
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/63"
);
const comment = (await res.json()) as Comment;import requests
res = requests.get(
"https://example-data.com/api/v1/comments/63"
)
comment = res.json() {
"id": 63,
"userId": 151,
"targetType": "post",
"targetId": 78,
"body": "Recusandae minus cotidie cur victus. Aestus textilis voluptas adsidue amoveo tero. Cunctatio arma admoneo thymbra.",
"isEdited": true,
"createdAt": "2026-01-17T20:23:19.901Z",
"updatedAt": "2026-02-08T15:43:37.261Z"
}