Comment #228
· 7/9/2025
Cruentus vito vindico capio aeneus pecus urbs. Stips sequi truculenter.
comments / #228
Cruentus vito vindico capio aeneus pecus urbs. Stips sequi truculenter.
Comment #228
7/9/2025
curl -sS \
"https://example-data.com/api/v1/comments/228" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/comments/228"
);
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/228"
);
const comment = (await res.json()) as Comment;import requests
res = requests.get(
"https://example-data.com/api/v1/comments/228"
)
comment = res.json() {
"id": 228,
"userId": 54,
"targetType": "post",
"targetId": 474,
"body": "Cruentus vito vindico capio aeneus pecus urbs. Stips sequi truculenter.",
"isEdited": false,
"createdAt": "2025-07-09T07:18:28.806Z",
"updatedAt": "2025-07-09T07:18:28.806Z"
}