Comment #184
· 11/14/2025
Quod triduana supellex incidunt. Alveus peccatus conicio tres abbas. Quasi adduco tunc adsidue aeneus supra ver caries conicio.
comments / #184
Quod triduana supellex incidunt. Alveus peccatus conicio tres abbas. Quasi adduco tunc adsidue aeneus supra ver caries conicio.
Comment #184
11/14/2025
curl -sS \
"https://example-data.com/api/v1/comments/184" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/comments/184"
);
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/184"
);
const comment = (await res.json()) as Comment;import requests
res = requests.get(
"https://example-data.com/api/v1/comments/184"
)
comment = res.json() {
"id": 184,
"userId": 20,
"targetType": "post",
"targetId": 327,
"body": "Quod triduana supellex incidunt. Alveus peccatus conicio tres abbas. Quasi adduco tunc adsidue aeneus supra ver caries conicio.",
"isEdited": false,
"createdAt": "2025-11-14T15:44:27.079Z",
"updatedAt": "2025-11-14T15:44:27.079Z"
}