Comment #71
· 9/30/2025
Adstringo pax corporis.
comments / #71
Adstringo pax corporis.
Comment #71
9/30/2025
curl -sS \
"https://example-data.com/api/v1/comments/71" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/comments/71"
);
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/71"
);
const comment = (await res.json()) as Comment;import requests
res = requests.get(
"https://example-data.com/api/v1/comments/71"
)
comment = res.json() {
"id": 71,
"userId": 90,
"targetType": "post",
"targetId": 156,
"body": "Adstringo pax corporis.",
"isEdited": false,
"createdAt": "2025-09-30T11:52:16.369Z",
"updatedAt": "2025-09-30T11:52:16.369Z"
}