Comment #1109
· 11/16/2025
Delectus umquam vilitas velum. Acies aliqua audentia suppellex ter.
comments / #1109
Delectus umquam vilitas velum. Acies aliqua audentia suppellex ter.
Comment #1109
11/16/2025
curl -sS \
"https://example-data.com/api/v1/comments/1109" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/comments/1109"
);
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/1109"
);
const comment = (await res.json()) as Comment;import requests
res = requests.get(
"https://example-data.com/api/v1/comments/1109"
)
comment = res.json() {
"id": 1109,
"userId": 203,
"targetType": "post",
"targetId": 67,
"body": "Delectus umquam vilitas velum. Acies aliqua audentia suppellex ter.",
"isEdited": false,
"createdAt": "2025-11-16T16:40:35.930Z",
"updatedAt": "2025-11-16T16:40:35.930Z"
}