Comment #982
· 1/29/2025
Aestus tremo aperiam vehemens. Cum pel comburo calcar anser ustilo decens depono. Constans ex auditor ultra.
comments / #982
Aestus tremo aperiam vehemens. Cum pel comburo calcar anser ustilo decens depono. Constans ex auditor ultra.
Comment #982
1/29/2025
curl -sS \
"https://example-data.com/api/v1/comments/982" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/comments/982"
);
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/982"
);
const comment = (await res.json()) as Comment;import requests
res = requests.get(
"https://example-data.com/api/v1/comments/982"
)
comment = res.json() {
"id": 982,
"userId": 207,
"targetType": "post",
"targetId": 14,
"body": "Aestus tremo aperiam vehemens. Cum pel comburo calcar anser ustilo decens depono. Constans ex auditor ultra.",
"isEdited": false,
"createdAt": "2025-01-29T20:59:20.110Z",
"updatedAt": "2025-01-29T20:59:20.110Z"
}