Comment #237
· 9/17/2025
Acceptus asper deleniti sui spectaculum terga tamquam. Talio synagoga curiositas ascit.
comments / #237
Acceptus asper deleniti sui spectaculum terga tamquam. Talio synagoga curiositas ascit.
Comment #237
9/17/2025
curl -sS \
"https://example-data.com/api/v1/comments/237" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/comments/237"
);
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/237"
);
const comment = (await res.json()) as Comment;import requests
res = requests.get(
"https://example-data.com/api/v1/comments/237"
)
comment = res.json() {
"id": 237,
"userId": 1,
"targetType": "post",
"targetId": 444,
"body": "Acceptus asper deleniti sui spectaculum terga tamquam. Talio synagoga curiositas ascit.",
"isEdited": false,
"createdAt": "2025-09-17T22:14:37.720Z",
"updatedAt": "2025-09-17T22:14:37.720Z"
}