Comment #223
· 2/8/2026
Tenuis abscido animi. Amplitudo tremo truculenter compello creta abduco casus vobis testimonium tamen.
comments / #223
Tenuis abscido animi. Amplitudo tremo truculenter compello creta abduco casus vobis testimonium tamen.
Comment #223
2/8/2026
curl -sS \
"https://example-data.com/api/v1/comments/223" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/comments/223"
);
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/223"
);
const comment = (await res.json()) as Comment;import requests
res = requests.get(
"https://example-data.com/api/v1/comments/223"
)
comment = res.json() {
"id": 223,
"userId": 132,
"targetType": "post",
"targetId": 66,
"body": "Tenuis abscido animi. Amplitudo tremo truculenter compello creta abduco casus vobis testimonium tamen.",
"isEdited": false,
"createdAt": "2026-02-08T07:31:48.337Z",
"updatedAt": "2026-02-08T07:31:48.337Z"
}