Comment #20
· 1/15/2026
Commodo combibo cimentarius canto supplanto alveus vinitor rerum assentator.
comments / #20
Commodo combibo cimentarius canto supplanto alveus vinitor rerum assentator.
Comment #20
1/15/2026
curl -sS \
"https://example-data.com/api/v1/comments/20" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/comments/20"
);
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/20"
);
const comment = (await res.json()) as Comment;import requests
res = requests.get(
"https://example-data.com/api/v1/comments/20"
)
comment = res.json() {
"id": 20,
"userId": 9,
"targetType": "post",
"targetId": 432,
"body": "Commodo combibo cimentarius canto supplanto alveus vinitor rerum assentator.",
"isEdited": false,
"createdAt": "2026-01-15T02:45:46.032Z",
"updatedAt": "2026-01-15T02:45:46.032Z"
}