Comment #53
· 8/30/2025
Compono quisquam tres labore spiritus clibanus admitto.
comments / #53
Compono quisquam tres labore spiritus clibanus admitto.
Comment #53
8/30/2025
curl -sS \
"https://example-data.com/api/v1/comments/53" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/comments/53"
);
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/53"
);
const comment = (await res.json()) as Comment;import requests
res = requests.get(
"https://example-data.com/api/v1/comments/53"
)
comment = res.json() {
"id": 53,
"userId": 237,
"targetType": "post",
"targetId": 32,
"body": "Compono quisquam tres labore spiritus clibanus admitto.",
"isEdited": false,
"createdAt": "2025-08-30T21:19:08.653Z",
"updatedAt": "2025-08-30T21:19:08.653Z"
}