Comment #388
· 4/12/2025
Sum depopulo ab campana. Curis totam verbum cursim. Cohibeo inflammatio ea aspicio quisquam.
comments / #388
Sum depopulo ab campana. Curis totam verbum cursim. Cohibeo inflammatio ea aspicio quisquam.
Comment #388
4/12/2025
curl -sS \
"https://example-data.com/api/v1/comments/388" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/comments/388"
);
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/388"
);
const comment = (await res.json()) as Comment;import requests
res = requests.get(
"https://example-data.com/api/v1/comments/388"
)
comment = res.json() {
"id": 388,
"userId": 73,
"targetType": "post",
"targetId": 487,
"body": "Sum depopulo ab campana. Curis totam verbum cursim. Cohibeo inflammatio ea aspicio quisquam.",
"isEdited": false,
"createdAt": "2025-04-12T23:33:29.523Z",
"updatedAt": "2025-04-12T23:33:29.523Z"
}