Comment #110
· 5/26/2025
Depraedor accusator numquam carbo explicabo vulariter annus debilito.
comments / #110
Depraedor accusator numquam carbo explicabo vulariter annus debilito.
Comment #110
5/26/2025
curl -sS \
"https://example-data.com/api/v1/comments/110" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/comments/110"
);
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/110"
);
const comment = (await res.json()) as Comment;import requests
res = requests.get(
"https://example-data.com/api/v1/comments/110"
)
comment = res.json() {
"id": 110,
"userId": 217,
"targetType": "post",
"targetId": 54,
"body": "Depraedor accusator numquam carbo explicabo vulariter annus debilito.",
"isEdited": false,
"createdAt": "2025-05-26T19:52:53.301Z",
"updatedAt": "2025-05-26T19:52:53.301Z"
}